摘要:
ifconfig eth0 down //关闭网口1 ifconfig eth0 hw ether aa:aa:aa:aa:aa:aa // 修改mak ifconfig eth0 192.168.1.1 up //打开网口1 阅读全文
摘要:
iptables -P INPUT DROP //关闭所有端口 iptables -A INPUT -p tcp --dport 22 -j ACCEPT iptables -A OUTPUT -p tcp --sport 22 -j ACCEPT iptables -A INPUT -p tcp 阅读全文