赞
踩
passwd
1、编辑网卡配置文件
vi /etc/config/network
2、编辑各个物理端口的协议
config device option name 'br-lan' option type 'bridge' list ports 'eth1' list ports 'eth2' list ports 'eth3' config interface 'wan' option device 'eth0' option proto 'pppoe' option username '运营商提供的账号' option password '运营商提供的密码' option ipv6 'auto' config interface 'wan6' option device 'eth0' option proto 'dhcpv6'
3、重启网络,此时eth0端口为wan、eth1为lan口
service network restart
一、进入DHCP配置文件
vi /etc/config/dhcp
2、设置MAC/IP绑定
config host
option name '绑定名称'
option dns '1'
option mac 'xx:xx:xx:xx:xx:xx'
option ip 'xxx.xxx.xxx.xxx'
1、进入firewall配置文件
vi /etc/config/firewall
2、设置端口转发
config redirect
option dest 'lan'
option target 'DNAT'
option name '转发名'
option src 'wan'
option src_dport '外网端口号'
option dest_ip '内网IP'
option dest_port '内网端口'
1、进入system配置文件
vi /etc/config/system
2、设置时区
config system
option hostname 'OpenWrt'
option ttylogin '0'
option log_size '64'
option urandom_seed '0'
option zonename 'Asia/Shanghai'
option timezone 'CST-8'
option log_proto 'udp'
option conloglevel '8'
option cronloglevel '5'
1、安装中文语言包
opkg update
opkg install luci-i18n-base-zh-cn
opkg install ddns-scripts-dnspod
vi /etc/config/ddns
config service 'dnspod'
option service_name 'dnspod.cn'
option use_ipv6 '0'
option enabled '1'
option lookup_host '域名'
option domain '解析域名'
option username '账号'
option password '密码'
option ip_source
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。