openWrt 安裝與實踐 II

1. 啓動ubuntu上面的openwrt虛擬機以後, 設置一下虛擬機的網卡:web

第1個網卡: Host-onlyubuntu

第2個網卡: NATwindows

 

2. 查看網絡配置:網絡

root@OpenWrt:/etc/config# cat network

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 ifname 'eth0'
        option type 'bridge'
        option proto 'static'
        option ipaddr '192.168.1.254'
        option netmask '255.255.255.0'
        option ip6assign '60'

config interface 'wan'
        option ifname 'eth1'
        option proto 'dhcp'

config interface 'wan6'
        option ifname 'eth1'
        option proto 'dhcpv6'

config globals 'globals'
        option ula_prefix 'fd43:e822:82cf::/48'

oop

用ifconfig|grep addr命令, 能夠看到eth1的ip是192.168.127.129: blog

root@OpenWrt:/etc/config# ifconfig|grep add
br-lan    Link encap:Ethernet  HWaddr 00:0C:29:09:43:FB
          inet addr:192.168.1.254  Bcast:192.168.1.255  Mask:255.255.255.0
          inet6 addr: fd43:e822:82cf::1/60 Scope:Global
          inet6 addr: fe80::20c:29ff:fe09:43fb/64 Scope:Link
eth0      Link encap:Ethernet  HWaddr 00:0C:29:09:43:FB
          Interrupt:19 Base address:0x2000
eth1      Link encap:Ethernet  HWaddr 00:0C:29:09:43:05
          inet addr:192.168.127.129  Bcast:192.168.127.255  Mask:255.255.255.0
          inet6 addr: fe80::20c:29ff:fe09:4305/64 Scope:Link
          Interrupt:19 Base address:0x2080
          inet addr:127.0.0.1  Mask:255.0.0.0
          inet6 addr: ::1/128 Scope:Host

ip

 3. 檢查一下是否能訪問網絡: ci

root@OpenWrt:/etc/config# ping baidu.com
PING baidu.com (111.13.101.208): 56 data bytes
64 bytes from 111.13.101.208: seq=0 ttl=128 time=46.149 ms
64 bytes from 111.13.101.208: seq=1 ttl=128 time=47.142 ms
^C
--- baidu.com ping statistics ---
2 packets transmitted, 2 packets received, 0% packet loss
round-trip min/avg/max = 46.149/46.645/47.142 ms

虛擬機

升級一下luci吧:it

opkg update

opkg install luci

/etc/init.d/uhttpd enable

/etc/init.d/uhttpd start

/etc/init.d/firewall stop

而後打開防火牆.

接着就能夠在windows上面打開luci了.

 

 

接下來就能夠在web界面上折騰了...

相關文章
相關標籤/搜索