当前位置: 首页 > 图文教程 > 服务器 > Linux服务器 > routeros端口映射方法

Linux服务器
在Linux下架设CS1.4服务器的最好方法
使用Twisted实现一个简单Web服务器
基于IP,port和域名三种虚拟主机配置方法
Windows下通过xmanager远程桌面控制Linux(图)
搭建Linux安全的Squid代理服务器(图)
Linux:使用vsftpd构建安全的FTP服务(图)
网管教程:如何使用HTTP压缩优化服务器(图)
Linux+Apache+Mysql+PHP典型配置
FedoraCoreSamba3.0服务器实战调试
FedoraCoreSamba3.0轻松搞定PDC域服务器
在apach5.x中改变servlet的上下文
静态/动态编译在apache+php+mysql的应用
用实验快速掌握web服务器Apache
ApacheHTTP最新官方配置(中译版)
Linux应用:动手加固OpenSSH服务器
linux下的DHCP服务器的配置
Linux下Apache并发连接数和带宽控制
FreeBSD下利用Freemail轻松组建邮件系统
Linux中.htaccess文件使用手册
用实验快速学习Samba服务器设置

Linux服务器 中的 routeros端口映射方法


出处:互联网   整理: 软晨网(RuanChen.com)   发布: 2009-10-18   浏览: 51 ::
收藏到网摘: n/a

参与的routeros是2块网卡,ether1连接adsl,做pppoeclient,ether2连接局域网。
首先按照论坛上置顶的说明正确安装并配置routeros,实现客户机能够正常上网。
然后terminalrouteros

改变www服务端口为8081:
/ipservicesetwwwport=8081

改变hotspot服务端口为80,为用户登录页面做准备:
/ipservicesethotspotport=80


Setuphotspotprofiletomarkauthenticateduserswithflowname"hs-auth":
/iphotspotprofilesetdefaultmark-flow="hs-auth"login-method=enabled-address

增加一个用户:
/iphotspotuseraddname=user1password=1


重定向所有未授权用户的tcp请求到hotspot服务
/ipfirewalldst-nataddin-interface="ether2"flow="!hs-auth"protocol=tcpaction=redirect
to-dst-port=80comment="redirectunauthorizedclientstohotspotservice"


允许dns请求、icmpping;拒绝其他未经认证的所有请求:
/ipfirewalladdname=hotspot-tempcomment="limitunauthorizedhotspotclients"

/ipfirewallruleforwardaddin-interface=ether2action=jump
jump-target=hotspot-tempcomment="limitaccessforunauthorizedhotspotclients"

/ipfirewallruleinputaddin-interface=ether2dst-port=80protocol=tcp
action=acceptcomment="acceptrequestsforhotspotservlet"

/ipfirewallruleinputaddin-interface=ether2dst-port=67protocol=udp
action=acceptcomment="acceptrequestsforlocalDHCPserver"

/ipfirewallruleinputaddin-interface=ether2action=jump
jump-target=hotspot-tempcomment="limitaccessforunauthorizedhotspotclients"
/ipfirewallrulehotspot-tempaddflow="hs-auth"action=return
comment="returnifconnectionisauthorized"

/ipfirewallrulehotspot-tempaddprotocol=icmpaction=return
comment="allowpingrequests"

/ipfirewallrulehotspot-tempaddprotocol=udpdst-port=53action=return
comment="allowdnsrequests"

/ipfirewallrulehotspot-tempaddaction=reject
comment="rejectaccessforunauthorizedclients"

创建hotspot通道给认证后的hotspot用户
Createhotspotchainforauthorizedhotspotclients:
/ipfirewalladdname=hotspotcomment="accountauthorizedhotspotclients"

Passallthroughgoingtraffictohotspotchain:
/ipfirewallruleforwardaddaction=jumpjump-target=hotspot
comment="accounttrafficforauthorizedhotspotclients"

客户机输入任何网址,都自动跳转到登陆页面,输入账号密码,继续浏览。
如果使用ftp、pop3等,也必须先通过网页登录,才可以使用,当然使用winbox的时候也必须先登录。