...配置iptables,希望其他人只能放问我的8080端口,而我可以访问所有端口...
发布网友
发布时间:2024-10-23 08:18
我来回答
共4个回答
热心网友
时间:5分钟前
这样的话你可以指定你自己一条单独的规则,比如根据你的IP地址
iptables [-t table] {-A|-D} chain rule-specification
iptables [-t table] -I chain [rulenum] rule-specification
帮你写好规则
iptables -A INPUT -d 你的服务IP地址 -p TCP -dport 8080 -j ACCEPT
iptables -A INPUT -s 你要从哪里访问的IP -d 你的服务IP地址 -j ACCEPT
iptables -A INPUT -j REJECT
Good Luck~~
热心网友
时间:3分钟前
不太明白你的意思,把你需要限制访问的机器称为A,其他人只能访问A的8080端口,而你可以正常访问A的所有端口是这样吗?
热心网友
时间:9分钟前
做路由器端口映射。。。开放8080端口
热心网友
时间:9分钟前
http://man.chinaunix.net/network/iptables-tutorial-cn-1.1.19.html
Iptables 指南 1.1.19