- 论坛徽章:
- 0
|
我用双网卡搭建了ADSL拨号局域网,
服务器配置:双网卡,开放所有服务
- eth0是外卡,配置如下:
- DEVICE=eth0
- ONBOOT=no
- BOOTPROTO=dncp
- eth1是内卡,配置如下:
- DEVICE=eth1
- BOOTPROTO=static
- TYPE=Ethernet
- ONBOOT=yes
- IPADDR=192.168.0.1
- NETMASK=255.255.255.0
复制代码
在 /etc/rc.d 中写个路由表如下:
- #! /bin/bash
- echo 1 >; /proc/sys/net/ipv4/ip_forward
- IPT="/sbin/iptables"
- INET="ADSL动态IP 61.178.254.41"
- modprobe ip_conntrack_ftp
- modprobe ip_nat_ftp
- $IPT -t nat -A POSTROUTING -s 192.168.0.0/24 -o ppp0 -j MASQUERADE
- iptables -F INPUT ##..iptables.INPUT..
- iptables -F FORWARD ##..iptables.FORWARD..
- iptables -F OUTPUT ##..iptables.OUTPUT..
- ##clean all non-default chains
- iptables -X
- iptables -t nat -X
- $IPT -F -t filter
- $IPT -F -t nat
- $IPT -P INPUT DROP
- $IPT -P OUTPUT ACCEPT
- $IPT -P FORWARD ACCEPT
- $IPT -t nat -P PREROUTING ACCEPT
- $IPT -t nat -P POSTROUTING ACCEPT
- $IPT -t nat -P OUTPUT ACCEPT
- # ALLOW ALL in PRIVATE NET
- $IPT -A INPUT -i lo -j ACCEPT
- $IPT -A INPUT -i eth1 -j ACCEPT
- $IPT -A OUTPUT -o lo -p all -j ACCEPT
- $IPT -A OUTPUT -o eth1 -p all -j ACCEPT
复制代码
重启动拨号成功,域名www.abcd.com解析为此外网IP,从其它地方能够访问http,ftp,内部网也能访问外网。
但重大问题出来了,用OE或Foxmail只能收邮件,不能发邮件,
sohu.com总是要求输入smtp.sohu.com的用户密码,
sina.com提示“您的服务器意外终止了连接。其可能原因包括服务器出错、网络出错或长时间处于非活动状态。 帐户: 'pop3.sina.com', 服务器: 'smtp.sina.com.cn', 协议: SMTP, 端口: 25, 安全(SSL): 否, 错误号: 0x800CCC0F”,
只有126.com能够发出去。
于是用 PHP 编的socket发送邮件来测试,
126.com信发出去了,并返回的提示如下:
- 创建SOCKET连接:[b]Broken pipe[/b]
- 服务器应答:220 Coremail SMTP(Anti Spam) System (126com[030901])
- 客户机命令:EHLO HELO
- 服务器应答:250-smtp2 250-PIPELINING 250-AUTH LOGIN PLAIN 250-AUTH=LOGIN PLAIN 250 8BITMIME
- 客户机命令:AUTH LOGIN
- 服务器应答:334 VXNlcm5hbWU6
- 客户机命令:aGFsZXhodWFyeTEy
- 服务器应答:334 UGFzc3dvcmQ6
- 客户机命令:Y2h1bnNoZW4=
- 服务器应答:235 Authentication successful
- 客户机命令:MAIL FROM:qianyu@126.com
- 服务器应答:250 Ok
- 客户机命令:RCPT TO qianyu7923@yahoo.com.cn
- 服务器应答:250 Ok
- 客户机命令:DATA
- 服务器应答:354 End data with .
复制代码
sina.com 和sohu.com 返回“创建SOCKET连接:Success”,但没有下文了,最后提示
Warning: socket_write() unable to write to socket [32]: Broken pipe
其它邮件如 电信的 和 网通的一概只能收,不能发。
自己服务器开设的postfix收发正常。
请求各路大侠公议! |
|