【Linux面试真题】- 将本地的80端⼝的请求转发到8080端⼝,本机地址10.0.0.254,写出命令
【Linux面试真题】- 将本地的80端⼝的请求转发到8080端⼝,本机地址10.0.0.254,写出命令
iptables -t nat -A PRETOUTING -d 10.0.0.254 -p tcp --dprot 80 -j NDAT --to-destination 10.0.0.254:8080
iptables -t nat -A PRETOUTING -d 10.0.0.254 -p tcp --dprot 80 -j NDAT --to-destination 10.0.0.254:8080