|
发表于 2017-8-18 15:09:40
|
显示全部楼层
您好:
小米路由的SMB服务默认不监听WAN口,条件及设置如下:
需要root ,ssh
1 编辑
vi /etc/config/firewall
增加
config rule
option name 'Open Samba on WAN'
option src 'wan'
option proto 'tcp udp'
option dest_port '137 139 445'
option target 'ACCEPT'
config redirect
option name 'wan samba'
option src 'wan'
option src_dport '137 139 445'
option dest 'lan'
option proto 'tcp udp'
2 编辑
vi /etc/samba/smb.conf.template
interfaces = br-lan wan #此行修改
#bind interfaces only = yes #此行注释掉
3 重启
4 通过wan中地址访问SMB
\\X.X.X.X
如果要实现互访,在上级,也就是高恪上加一条静态路由:
目的网络地址为二级路由的LAN IP,下一跳地址为WAN IP,优先级最高。
|
|