来自网络的沙盒命令行?

来自网络的沙盒命令行?

与运行 类似time command,我想运行诸如 之类的命令dont_allow_network_access command。这可能吗?

答案1

你可以通过以下方式实现龙芯。此包包含一个名为lxc-取消共享你可以按如下方式使用:

# lxc-unshare -s NETWORK -- su username -c 'ping 127.0.0.1'

答案2

这将为您提供网络设备列表:

ifconfig -a

如果你要禁用的设备是 eth0

ifconfig eth0 down

并将其重新打开:

ifconfig eth0 up

相关内容