配置路由,使 LAN 连接通过 wifi,WAN 通过调制解调器

配置路由,使 LAN 连接通过 wifi,WAN 通过调制解调器

我必须配置我的机器,以便本地机器(在 192.168.100 中)的数据包能够通过。子网)通过我的无线网络,WAN 连接(任何其他 IP 地址)通过调制解调器。

考虑以下例子:

我打开 Web 浏览器并输入192.168.1.4/my_intranet_website。我想确保与此请求相关的所有流量都通过我的无线 LAN 接口。但是当我输入时www.superuser.com(在我的本地网络之外),我希望此流量通过我的 USB 调制解调器。

我试图弄清楚哪些/dev条目代表哪些网络接口,但我甚至无法做到这一点。我记得,当我使用 Debian 时,它是/dev/wan0/dev/eth0代表无线/有线,以及/dev/wcdma0代表 USB 调制解调器。这里?不知道。调制解调器是 USB 调制解调器,所以我认为它可能是 和/dev/ttyUSB0之一/dev/ttyUSB1

真的很抱歉对问题描述得如此简洁,但我就是这么菜鸟 :/ 我会提供任何进一步的必要信息。

如有任何帮助,我们将不胜感激,提前致谢。

编辑:跟踪路由输出:

  1. 当调制解调器和 WLAN)连接均已建立时:

    sopel@mediacenter:/dev$ traceroute www.superuser.com
    traceroute to www.superuser.com (151.101.129.69), 30 hops max, 60 byte packets    
    1  netiaspot.home (192.168.1.254)  2.904 ms  4.580 ms  6.440 ms
    2  83.238.252.80 (83.238.252.80)  28.329 ms  28.679 ms  30.332 ms
    3  83.238.113.24 (83.238.113.24)  41.348 ms  41.340 ms  41.310 ms
    4  83.238.252.62 (83.238.252.62)  42.953 ms  43.643 ms  43.633 ms
    5  83.238.248.183 (83.238.248.183)  47.110 ms  47.112 ms  48.809 ms
    6  149.6.28.97 (149.6.28.97)  54.555 ms  34.576 ms  38.036 ms
    7  130.117.3.29 (130.117.3.29)  44.751 ms  46.638 ms  48.214 ms
    8  154.54.38.205 (154.54.38.205)  55.980 ms  65.842 ms  69.702 ms
    9  * * *
    ...
    30  * * *
    
    
    sopel@mediacenter:/dev$ traceroute 192.168.1.1
    traceroute to 192.168.1.1 (192.168.1.1), 30 hops max, 60 byte packets
    1  * * *
    2  * * *
    3  * * *
    ...
    30  * * *
    
  2. 当只有调制解调器处于启动状态时

    sopel@mediacenter:/dev$ traceroute www.superuser.com
    traceroute to www.superuser.com (151.101.129.69), 30 hops max, 60 byte packets
     1  * * *
     2  * * *
     3  * * *
     4  * * *
     5  * * *
     6  185.89.184.2 (185.89.184.2)  104.232 ms  71.514 ms  82.738 ms
     7  * * *
     8  * * *
     9  * * *
    ...
    30  * * *
    
    sopel@mediacenter:/dev$ traceroute 192.168.1.1
    traceroute to 192.168.1.1 (192.168.1.1), 30 hops max, 60 byte packets
     1  * * *
     2  * * *
     3  * * *
     4  * * *
     5  * * *
     6  * * *
     7  * * *
     8  * * *
    ...
    30  * * *
    

请注意,在第二种情况下,192.168.1.1 无法访问(根本没有 LAN)。

相关内容