#!/bin/sh /etc/rc.common
START=97

start () {
    ulimit -c unlimited;/usr/bin/lg02_pkt_fwd &
}

stop () {
    killall -15 lg02_pkt_fwd
}

