请告诉我如何使用 ifconfig unix 命令远程打开和关闭端口?
$ ifconfig eth0 down
$ ifconfig eth0 up
其中eth0是我的网卡接口!
答案1
您可以在一行中完成此操作:
ifconfig eth0 down; ifconfig eth0 up
如上所述...只需发出 ifconfig down (不带分号)和 ifconfig up 即可切断您与远程机器的连接。
在大多数 nix 上,您将需要超级用户权限,如果您使用 sudo,请确保对两个 ifconfig 语句都执行了 sudo。