320x100
#vi mac
#!/bin/bash
# chkconfig: 2345 90 90
# description: test service
case "$1" in
start)
/usr/local/bin/macchanger -m 00:00:00:00:00:00 eth0 --> mac 변경
;;
stop)
/usr/local/bin/macchanger --random eth0 --> mac random
;;
*)
echo "Usage {start|stop}"
exit 1
;;
esac
exit 0
# chmod 0744 mac
# chown root:sys /etc/init.d/mac
# mv mac /etc/init.d/
# cd /etc/init.d
# ln mac /etc/rc2.d/S99mac
# ln mac /etc/rcn.d/K99mac
320x100
'Linux' 카테고리의 다른 글
리눅스 랜카드, 메인보드,메모리 모델 확인방법 (0) | 2017.10.25 |
---|---|
리눅스 limit 값 수정하기 (0) | 2017.10.19 |
솔라리스 ping: sendto No route to host (0) | 2017.08.25 |
/usr/lib/passmgmt: Inconsistent password files UX: useradd: ERROR: Inconsistent password files. See pwconv(1M). (0) | 2017.08.25 |
솔라리스 11 타임존 변경 (0) | 2017.08.24 |