当前位置:   article > 正文

OpenWRT入门配置OpenVPN、DDNS_openwrt配置

openwrt配置

一、密码设置

passwd
  • 1

二、PPPOE

1、编辑网卡配置文件

vi /etc/config/network
  • 1

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'
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17

3、重启网络,此时eth0端口为wan、eth1为lan口

service network restart
  • 1

三、DHCP

一、进入DHCP配置文件

vi /etc/config/dhcp
  • 1

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
  • 2
  • 3
  • 4
  • 5

四、端口转发

1、进入firewall配置文件

vi /etc/config/firewall
  • 1

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
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8

五、时区设置

1、进入system配置文件

vi /etc/config/system
  • 1

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
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10

六、语言设置

1、安装中文语言包

opkg update
opkg install luci-i18n-base-zh-cn
  • 1
  • 2

七、DDNS

opkg install ddns-scripts-dnspod
  • 1
vi /etc/config/ddns
  • 1
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 
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
本文内容由网友自发贡献,转载请注明出处:【wpsshop博客】
推荐阅读
相关标签
  

闽ICP备14008679号