1
jasontse 2014-08-17 10:21:20 +08:00 via iPad 1
贴出你的 /etc/config/network
|
2
zts1993 2014-08-17 10:27:27 +08:00 via Android 1
bad address应该是dns问题?
|
3
hellov22ex OP @jasontse
下面的就是了,谢谢回答 config interface loopback option ifname lo option proto static option ipaddr 127.0.0.1 option netmask 255.0.0.0 config interface lan option type bridge option ifname eth0.1 option proto static option ipaddr 192.168.1.1 option netmask 255.255.255.0 config interface wan option ifname eth0.1 option proto dhcp config switch eth0 option enable 1 option reset 1 option enable_vlan 1 config switch_vlan option device eth0 option vlan 0 option ports "0 1 2 5t" config switch_vlan option device eth0 option vlan 1 option ports "3 5t" |
4
hellov22ex OP @zts1993 DNS已经设置成了了路由器的,网关也是,但是还是不行
|
5
kttde 2014-08-17 10:58:00 +08:00 1
这是我的/etc/config/network配置文件,可以参考下,我的路由器是rg100a
config interface 'loopback' option ifname 'lo' option proto 'static' option ipaddr '127.0.0.1' option netmask '255.0.0.0' config interface 'lan' option type 'bridge' option proto 'static' option netmask '255.255.255.0' option nat '1' option gateway '10.0.0.1' option ipaddr '10.0.0.1' option ifname 'eth1.2' config interface 'wan' option ifname 'eth1.1' option _orig_ifname 'eth1.1' option _orig_bridge 'false' option proto 'dhcp' config switch option name 'eth1' option reset '1' option enable_vlan '1' config switch_vlan option device 'eth1' option vlan '1' option ports '3 5t' config switch_vlan option device 'eth1' option vlan '2' option ports '0 1 2 5t' |
6
goodxxx 2014-08-17 11:01:36 +08:00 1
你没安装luci 包吗?用这个web界面设置比较方便吧
|
7
hellov22ex OP |
8
jasontse 2014-08-17 11:10:59 +08:00 via iPad 1
打印
# ifconfig 看看是不是冲突了 |
9
hellov22ex OP @jasontse
br-lan Link encap:Ethernet HWaddr 34:6B:D3:6F:BD:A2 inet addr:192.168.1.1 Bcast:192.168.1.255 Mask:255.255.255.0 inet6 addr: fe80::366b:d3ff:fe6f:bda2/64 Scope:Link inet6 addr: fdc9:46e7:5fa1::1/60 Scope:Global UP BROADCAST RUNNING MULTICAST MTU:1500 Metric:1 RX packets:2347 errors:0 dropped:0 overruns:0 frame:0 TX packets:1343 errors:0 dropped:0 overruns:0 carrier:0 collisions:0 txqueuelen:0 RX bytes:163886 (160.0 KiB) TX bytes:132213 (129.1 KiB) eth0 Link encap:Ethernet HWaddr 34:6B:D3:6F:BD:A2 inet6 addr: fe80::366b:d3ff:fe6f:bda2/64 Scope:Link UP BROADCAST RUNNING MULTICAST MTU:1500 Metric:1 RX packets:2768 errors:0 dropped:0 overruns:0 frame:0 TX packets:2487 errors:0 dropped:0 overruns:0 carrier:0 collisions:0 txqueuelen:1000 RX bytes:265536 (259.3 KiB) TX bytes:553989 (541.0 KiB) Interrupt:14 eth0.1 Link encap:Ethernet HWaddr 34:6B:D3:6F:BD:A2 UP BROADCAST RUNNING MULTICAST MTU:1500 Metric:1 RX packets:2547 errors:0 dropped:0 overruns:0 frame:0 TX packets:2472 errors:0 dropped:0 overruns:0 carrier:0 collisions:0 txqueuelen:0 RX bytes:195176 (190.6 KiB) TX bytes:542395 (529.6 KiB) lo Link encap:Local Loopback inet addr:127.0.0.1 Mask:255.0.0.0 inet6 addr: ::1/128 Scope:Host UP LOOPBACK RUNNING MTU:65536 Metric:1 RX packets:29243 errors:0 dropped:0 overruns:0 frame:0 TX packets:29243 errors:0 dropped:0 overruns:0 carrier:0 collisions:0 txqueuelen:0 RX bytes:1988484 (1.8 MiB) TX bytes:1988484 (1.8 MiB) |
10
hellov22ex OP @jasontse 不好意思,虽然一些看得懂,但是还是不了解原因
|
11
zts1993 2014-08-17 11:34:00 +08:00 1
@hellov22ex wan 不是dhcp么,那你的dnsmasq工作正常么?
|
12
jasontse 2014-08-17 11:37:36 +08:00 via iPad 1
@hellov22ex
WAN 没有 DHCP 成功。 |
13
hellov22ex OP @zts1993 不好意思,Linux菜鸡,dnsmasq提示我53端口在使用,但是正常不正常不知道了
|
14
ooxxcc 2014-08-17 11:38:07 +08:00 1
eth0.1 没获取到IP吧……
|
15
jasontse 2014-08-17 11:39:25 +08:00 via iPad 1
@hellov22ex
你现在是什么版本? 刷14.07-rc3 吧,预装 LuCI。 |
16
hellov22ex OP @jasontse 那该如何处理呢?
|
17
hellov22ex OP |
18
jasontse 2014-08-17 11:41:36 +08:00 via iPad
@hellov22ex
确认你连接的 WAN 端口是正确的,并且上游 DHCP 服务配置正常。 |
19
kttde 2014-08-17 12:14:11 +08:00
config interface lan
option type bridge option ifname eth0.1 option proto static option ipaddr 192.168.1.1 option netmask 255.255.255.0 option ifname eth0.1 这里应该是0.2,因为0.1已经被wan口使用,再被使用会冲突 官方文档http://wiki.openwrt.org/zh-cn/doc/uci/network |
20
csx163 2014-08-17 12:47:21 +08:00 1
真麻烦,怎么不关掉DHCP,再改个IP直接LAN 对 LAN
|
21
hellov22ex OP |
22
hellov22ex OP |
23
seki 2014-08-17 13:44:33 +08:00 1
前两天的 rc3 已经带了 luci 界面了
话说之前没带的时候是挺蛋疼的,shell 下的基本设置建议用 uci 而不要直接改配置文件 |
24
hellov22ex OP @seki 不好意思,我不知道rc3是什么,我对openwrt的版本号不太了解,找的是硬件支持里面链接进去的最新的那个,然后其它就什么都不知道了,现在的问题是无法安装luci,按照前面的那个哥们的建议,路由器已经在上游路由器的DHCP里面稳定找到了,但是现在我无法链接或者ping通hg556a,不知道如何处理了
|
25
jasontse 2014-08-17 13:52:55 +08:00 via iPhone 1
|
26
hellov22ex OP @jasontse 感谢提供支持,我想确认下,HG556A A版本硬件支持吗?
|
27
jasontse 2014-08-17 13:55:51 +08:00 via iPhone 1
@hellov22ex
你现在刷的固件下载地址是什么 |
28
hellov22ex OP |
29
hellov22ex OP |
30
jasontse 2014-08-17 14:02:17 +08:00 via iPhone 1
@hellov22ex
你给的地址文件名是 553,确定没有刷错? |
31
hellov22ex OP |
32
jasontse 2014-08-17 14:05:53 +08:00 via iPhone 1
@hellov22ex
那就没错了,是我上面发的那个。 |
33
hellov22ex OP @jasontse 好的,已经下载完毕,正在准备刷,就是路由器一直不肯进入刷机状态
|
34
hellov22ex OP @jasontse 刷了这个版本,是否还需要额外设置?还是可以直接进入web的图形界面进行需要的设置?
|
35
jasontse 2014-08-17 14:14:01 +08:00 via iPhone 1
@hellov22ex
可以直接访问 http://192.168.1.1 |
36
hellov22ex OP @jasontse 恩,已经都配置好了。很好用的版本,谢谢
|
37
hellov22ex OP @jasontse 有个疑问,为什么language那只有auto,没有中文选项?我该如何添加或者转变它为中文?
|
38
jasontse 2014-08-17 14:27:04 +08:00 via iPad 1
|
39
kttde 2014-08-17 14:32:30 +08:00 1
@hellov22ex eth0.0和eth0.1没有区别,你改为0.3,0.4也行
|
40
hellov22ex OP @jasontse 不好意思又要问了,现在出现的问题是,无法上网,可以把它当个交换机,但是它自己无法上网,在telnet模式下,无法ping通或者链接网络,上游路由器一切正常,也能看到分配给它的IP,但是无法链接网络
|
41
hellov22ex OP 好了,搞定了,谢谢楼上的所有人,最后把lan4口弄成了wan就行了
|