A. openwrt路由器怎麼設置共享
無線開關
/etc/config/wireless
#option disabled 1
實現:注釋掉該項或 改值為0 使能
網路介面配置
/etc/config/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 'type' 'bridge' //橋接模式
option 'ifname' 'eth1' //對應lan1-lan3
option 'proto' 'static' //靜態ip地址
option 'ipaddr' '192.168.2.1' //lan內訪問路由地址(為了不與上一級路由沖突,換了個網段)
option 'netmask' '255.255.255.0'
option 'nat' '1' //轉發數據包,這句很重要 wan口上網後 所有連到lan的機器就可以上網了
config 'interface' 'wan' //讓wan口可以上網(撥號,連接上級路由...都行 和平時讓路由連網沒區別)
option 'ifname' 'eth0' //對應DB120的lan4口
option 'proto' 'static' //這里我用的是上級路由連的網
option 'ipaddr' '192.168.1.2' //wan口ip地址和上級路由在一個網段
option 'netmask' '255.255.255.0'
option 'gateway' '192.168.1.1' //上級路由IP地址
option 'dns' '202.101.172.46' //DNS伺服器地址 根據各地實踐情況決定
網橋命令:
brctl
顯示當前網橋
brctl show
添加網路介面到已建網橋
brctl addif br-lan eth0
brctl addif br-lan eth1
默認有的 (轉發功能)
/etc/config/firewall
config forwarding
option src lan
option dest wan
下面默認的改一個地方
config zone
option name wan
option network 'wan'
option input REJECT 改成 ACCEPT 方便以後從wan口直接訪問路由
option output ACCEPT
option forward REJECT
option masq 1
option mtu_fix 1
B. openwrt 怎麼允許外網訪問
1、首先在Openwrt里邊使用的不是名為Openssh的程序,而是叫dropbear,由這個服務提供ssh連接的。