bsd#cat /root/netflow
#!/bin/sh
#
# $Id$
#
ext_if=fxp0
int_if0=em0
case "$1" in
start)
/sbin/kldload ng_netflow
/sbin/kldload ng_ksocket
/sbin/kldload ng_ether
/usr/sbin/ngctl -f- <<-SEQ
mkpeer ${ext_if}: tee lower right
name ${ext_if}:lower ext_tee
connect ${ext_if}: ext_tee: upper left
mkpeer ${int_if0}: tee lower right
name ${int_if0}:lower int_tee0
connect ${int_if0}: int_tee0: upper left
mkpeer ext_tee: netflow right2left iface0
name ext_tee:right2left netflow
connect ext_tee: netflow: left2right iface1
connect int_tee0: netflow: left2right iface2
connect int_tee0: netflow: right2left iface3
mkpeer netflow: ksocket export inet/dgram/udp
msg netflow:export connect inet/127.0.0.1:4567
SEQ
;;
stop)
/usr/sbin/ngctl shutdown netflow:
/usr/sbin/ngctl shutdown ext_tee:
/usr/sbin/ngctl shutdown int_tee0:
/usr/sbin/ngctl shutdown ${int_if0}:
/usr/sbin/ngctl shutdown ${int_if1}:
;;
*)
echo "Usage: `basename $0` {start|stop}" >&2
;;
esac
exit 0
при запуске выдает ошибку, но такой строки не существует.
bsd#/root/netflow start
/root/netflow: 50: Syntax error: end of file unexpected (expecting ";;")
Ответ на:
комментарий
от sdio
Ответ на:
комментарий
от quasi
Ответ на:
комментарий
от cvv
Ответ на:
комментарий
от quasi
Ответ на:
комментарий
от quasi
Ответ на:
комментарий
от dilmah
Ответ на:
комментарий
от anonymous
Вы не можете добавлять комментарии в эту тему. Тема перемещена в архив.
Похожие темы
- Форум FreeBSD: netgraph ngctl, подскажите по старт- скрипту.... (2007)
- Форум помогите с netgraph - не пойму где ошибка (2006)
- Форум Расхождение трафика (2006)
- Форум Погрешности ng_netflow (2006)
- Форум Перестал подключаться PPTP клиент после обновления до Linux Mint 18 (2017)
- Форум Проблема с pptp после обновления centos 7 до 7.1 (2015)
- Форум Debian5 pppoe (2009)
- Форум косяк с ipsec (2015)
- Форум CentOS 6, не работает pppoeconf (2016)
- Форум Debian и pptp туннель (2022)