互联网通过lan通过路由器到wifi


0

我一直通过局域网连接互联网,所有我需要做的就是给我的ISP我的eth-card的mac地址,它的工作原理。

现在我想通过路由器桥接连接以通过wifi实现互联网共享,我有一个运行在其上的固件8.2.7.7的Thomson Speedtouch 585 v6。我需要以某种方式启用eth-port作为dhcp-client,在其上设置mac-address然后使用路由器wifi作为我的无线计算机的dhcp服务器,以便他们可以访问互联网。

有人对此有所了解吗?


我一直在仔细查看手册,也许我只需要在网络上获得更大的书。令人失望的是,这并不是一个标准功能。
Vésteinn

Answers:


2

发现了这个!

固件版本6.1或更高版本:

:ppp relay flush
:ppp flush
:eth flush
:atm flush
:atm phonebook flush
:eth bridge ifdelete intf=ethport4
:eth ifadd intf=eth_wan
:eth ifconfig intf=eth_wan dest=ethif4
:eth ifattach intf=eth_wan
:ip ifadd intf=ip_wan_eth dest=eth_wan
:ip ifconfig intf=ip_wan_eth status=up
:ip ifconfig intf=ip_wan_eth hwaddr=00:11:42:0c:65:1d <-- This line is only needed if you need MAC address cloning
:ip ifattach intf=ip_wan_eth
:nat ifconfig intf=ip_wan_eth translation=enabled
:dhcp client ifadd intf=ip_wan_eth
:dhcp client ifconfig intf=ip_wan_eth metric=5 dnsmetric=5
:dhcp client rqoptions add intf=ip_wan_eth option=dhcp-lease-time
:dhcp client rqoptions add intf=ip_wan_eth option=dhcp-renewal-time
:dhcp client rqoptions add intf=ip_wan_eth option=dhcp-rebinding-time
:dhcp client rqoptions add intf=ip_wan_eth option=subnet-mask
:dhcp client rqoptions add intf=ip_wan_eth option=classless-static-routes
:dhcp client rqoptions add intf=ip_wan_eth option=default-routers
:dhcp client rqoptions add intf=ip_wan_eth option=classfull-static-routes
:dhcp client rqoptions add intf=ip_wan_eth option=domain-name-servers
:dhcp client ifattach intf=ip_wan_eth
:saveall

它的工作非常出色。谢谢 http://forums.whirlpool.net.au/archive/1025362 ,只记得更新固件!


1

您可以在此处找到路由器的用户指南(PDF):
http://www.cerberusnetworks.co.uk/PDF/ST585_UserGuide.pdf

基于对设备的快速查看,我认为它无法满足您的需求。有两个问题:

  1. 该设备旨在将dsl端口用作WAN端口,因此出厂固件不支持将dhcp仅支持其余端口。更重要的是,它仅支持在设备LAN侧的端口和WAN侧的dsl端口之间在本地网络和公共Internet之间正确路由数据包所需的第3层(路由器)功能。它不知道如何将其中一个局域网端口视为您的互联网连接。
  2. 所有LAN端口可能具有相同的mac地址,并且此设备不太可能支持mac欺骗。

也就是说,你可能会很幸运,它可以解决两种方式之一:

  1. 更全面地阅读链接文档可能会证明我错了(尽管我对此表示怀疑)。
  2. 您可以在设备上加载类似dd-wrt,open-wrt或tomato的内容,此时您很有可能将其工作。

此外,您可以在任何可以执行此操作的任何地方获得现成的无线路由器,价格低于40美元,如果您知道在哪里查看,则可以获得<20美元(newegg.com或亚马逊都会这样做)。


我更新了固件以启用此功能,手册已经过时,因为有更多选项可供使用,它就是这样一群疏忽,我无法理解它。我可以通过CLI设置任何端口。该设备支持mac-spoofing。所以,我相当肯定它可以做我想要它做的正确的调整和足够的时间,除非当然有人已经解决了这个问题或知道这样的事情的好方案。
Vésteinn
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.