其他分享
首页 > 其他分享> > 内网机器上网

内网机器上网

作者:互联网

如何让内网机器也可以互联网冲浪

  1. 网络环境
    A: 192.168.33.20/24
    B: 192.168.33.1/24, ens33, 192.168.3.138, ens38
    B可通过ens38网卡上网,A在内网环境,不能连接互联网

  2. 配置A
    将B设为A的默认路由
    route add default gw 192.168.33.1
    配置DNS:114.114.114.114

  3. 配置A
    开启路由转发
    vim /etc/sysctl.conf

    net.ipv4.ip_forward = 1
    

    立即生效
    sysctl -p
    开启iptables nat转发
    sudo iptables -t nat -A POSTROUTING -o ens38 -j MASQUERADE
    sudo iptables -A FORWARD -i ens33 -j ACCEPT

  4. 配置完成
    在A上测试
    ping www.baidu.com

    $ ping www.baidu.com
    PING www.a.shifen.com (14.215.177.38) 56(84) bytes of data.
    64 bytes from 14.215.177.38 (14.215.177.38): icmp_seq=1 ttl=127 time=29.8 ms
    64 bytes from 14.215.177.38 (14.215.177.38): icmp_seq=2 ttl=127 time=45.8 ms
    64 bytes from 14.215.177.38 (14.215.177.38): icmp_seq=3 ttl=127 time=30.1 ms
    

标签:www,机器,seq,bytes,上网,192.168,177.38,14.215
来源: https://blog.csdn.net/qq_42058305/article/details/113501027