This: Difference between revisions
Jump to navigation
Jump to search
(quick and dirty script to enable/disable network sniffing on olpc) |
No edit summary |
||
Line 1: | Line 1: | ||
#!/bin/sh |
<nowiki>#!</nowiki>/bin/sh<br><br> |
||
case $1 in |
case $1 in<br> |
||
e|-e) |
e|-e)<br> |
||
ifconfig msh0 down |
ifconfig msh0 down<br> |
||
ifconfig eth0 down |
ifconfig eth0 down<br> |
||
/sbin/service NetworkManager stop |
/sbin/service NetworkManager stop<br> |
||
export TRAFFIC_MASK=0x7 |
export TRAFFIC_MASK=0x7<br> |
||
echo $TRAFFIC_MASK > /sys/class/net/eth0/device/libertas_rtap |
echo $TRAFFIC_MASK > /sys/class/net/eth0/device/libertas_rtap<br> |
||
ifconfig rtap0 up |
ifconfig rtap0 up <br> |
||
<nowiki>;;</nowiki><br> |
|||
;; |
|||
d|-d) |
d|-d)<br> |
||
ifconfig rtap0 down |
ifconfig rtap0 down<br> |
||
export TRAFFIC_MASK=0x0 |
export TRAFFIC_MASK=0x0<br> |
||
echo $TRAFFIC_MASK > /sys/class/net/eth0/device/libertas_rtap |
echo $TRAFFIC_MASK > /sys/class/net/eth0/device/libertas_rtap<br> |
||
/sbin/service NetworkManager start |
/sbin/service NetworkManager start<br> |
||
ifconfig msh0 up |
ifconfig msh0 up<br> |
||
ifconfig eth0 up |
ifconfig eth0 up<br> |
||
<nowiki>;;</nowiki><br> |
|||
;; |
|||
<nowiki>*)</nowiki><br> |
|||
*) |
|||
echo "USAGE: sh capture.sh e|d" |
echo "USAGE: sh capture.sh e|d"<br> |
||
<nowiki>;;</nowiki><br> |
|||
;; |
|||
esac |
esac<br> |
Revision as of 16:29, 3 June 2008
#!/bin/sh
case $1 in
e|-e)
ifconfig msh0 down
ifconfig eth0 down
/sbin/service NetworkManager stop
export TRAFFIC_MASK=0x7
echo $TRAFFIC_MASK > /sys/class/net/eth0/device/libertas_rtap
ifconfig rtap0 up
;;
d|-d)
ifconfig rtap0 down
export TRAFFIC_MASK=0x0
echo $TRAFFIC_MASK > /sys/class/net/eth0/device/libertas_rtap
/sbin/service NetworkManager start
ifconfig msh0 up
ifconfig eth0 up
;;
*)
echo "USAGE: sh capture.sh e|d"
;;
esac