论坛风格切换切换到宽版
  • 879阅读
  • 2回复

[问题求助]Red hat Linux 9.0 如何实现局域网共享上网? [复制链接]

上一主题 下一主题
 
发帖
1957
C币
-198861
威望
367
贡献值
1
银元
-3
铜钱
4483
人人网人气币
0
只看楼主 倒序阅读 使用道具 楼主  发表于: 2009-05-01
各位虾请帮我下:
  Red hat Linux 9.0 如何实现局域网共享上网?.我用的是ADSL+路由,用路由的DHCP分配IP共享上网,我刚做了.台LINUX 9。0的机子,可连不到网上.去,请各位帮下,在线等,急急    外汇
谢谢了
我的QQ:370404818

评价一下你浏览此帖子的感受

精彩

感动

搞笑

开心

愤怒

无聊

灌水
离线qq273580105.
发帖
2049
C币
-235857
威望
381
贡献值
1
银元
-1
铜钱
4522
人人网人气币
0
只看该作者 沙发  发表于: 2010-04-13
Re:Red
看看这篇文章吧,我前日子刚用过的.我也是菜鸟,希望能够帮到你.
RedHat 8.0提供ADSL共享上网的解决办法


(转贴一张,我单位用的是铁通的ADSL,以前是固定IP,可后来改为动态的以后就不能用LINUX上了。特转此贴)

一、操作环境:
机器系统与配置:三台机器的关健部件
第一台:台式机,双网卡,8139和8029,操作系统RedHat 8.0
第二台:Toshiba notebook,PC卡。RTL-8139/8139C/8139C+,操作系统RedHat 8.0
第三台:台式机,8029网卡,操作系统windowme
Hub[集线器]:Tp-Link 10M,8口
ADSL,乙太口,非路由。
二、网卡设置如下:
在第一台机器的双网卡的接法:把ADSL接在eth0上,把eth1接在HUB上。
第一块网卡的ip设置:
ip地址:192.168.0.1
掩码:255.255.255.0
第二块网卡的设置
ip地址:192.168.0.2
掩码:255.255.255.0
在这两块网卡中,不要设置网关。
++++++++++++++++++++++++++++++++++++++++
第二台:Toshiba notebook的网卡设置
IP:192.168.0.6
掩码:255.255.255.0
网关:192.168.0.1
DNS:设置电信给的,或者下面的也行
202.96.134.133
202.96.168.68
++++++++++++++++++++++++++++++++++++++++
第三台机器的网卡设置
P:192.168.0.8
掩码:255.255.255.0
网关:192.168.0.1
DNS:设置电信给的,或者下面的也行
202.96.134.133
202.96.168.68
三、设置ppp拔号,
1]删除原来的ppp的ADSL链接。
如果redhat-config-network原来已经用 redhat-config-network设置的ppp的ADSL连接拔号,用下面的命令调用删除。
#redhat-config-network
2]在终端上以root权限运行
#adsl-setup
进入设置过程:
Welcome to the ADSL client setup. First, I will run some checks on
your system to make sure the PPPoE client is installed properly...

LOGIN NAME

Enter your Login Name (default root): ADSL提供商给的用户名,写在这里

INTERFACE

Enter the Ethernet interface connected to the ADSL modem
For Solaris, this is likely to be something like /dev/hme0.
For Linux, it will be ethX, where X is a number.
(default eth0): eth0这是ADSL通过第一台机器的第一张网卡eth0提供上网

Do you want the link to come up on demand, or stay up continuously?
If you want it to come up on demand, enter the idle time in seconds
after which the link should be dropped. If you want the link to
stay up permanently, enter no (two letters, lower-case.)
NOTE: Demand-activated links do not interact well with dynamic IP
addresses. You may have some problems with demand-activated links.
Enter the demand value (default no):在这里按一下回车就行了。

DNS

Please enter the IP address of your ISPs primary DNS server.
If your ISP claims that the server will provide dynamic DNS addresses,
enter server (all lower-case) here.
If you just press enter, I will assume you know what you are
doing and not modify your DNS setup.
Enter the DNS information here: 202.96.134.133这是DSN,最好用你本地电信给的
Please enter the IP address of your ISPs secondary DNS server.
If you just press enter, I will assume there is only one DNS server.
Enter the secondary DNS server address here: 202.96.168.68这是第二个DNS,也是电信给的。

PASSWORD

Please enter your Password:在这里把ADSL提供商给的密码写上
Please re-enter your Password:

USERCTRL

Please enter yes (two letters, lower-case.) if you want to allow
normal user to start or stop DSL connection (default yes): yes

FIREWALLING

Please choose the firewall rules to use. Note that these rules are
very basic. You are strongly encouraged to use a more sophisticated
firewall setup; however, these will provide basic security. If you
are running any servers on your machine, you must choose NONE and
set up firewalling yourself. Otherwise, the firewall rules will deny
access to all standard servers like Web, e-mail, ftp, etc. If you
are using SSH, the rules will block outgoing SSH connections which
allocate a privileged source port.

The firewall choices are:
0 - NONE: This script will not set any firewall rules. You are responsible
for ensuring the security of your machine. You are STRONGLY
recommended to use some kind of firewall rules.
1 - STANDALONE: Appropriate for a basic stand-alone web-surfing workstation
2 - MASQUERADE: Appropriate for a machine acting as an Internet gateway
for a LAN
Choose a type of firewall (0-2): 2

Start this connection at boot time

Do you want to start this connection at boot time?
Please enter no or yes (default no):yes

** Summary of what you entered **

Ethernet Interface: eth0
User name: ADSL用户名
Activate-on-demand: No
Primary DNS: 202.96.134.133
Secondary DNS: 202.96.168.68
Firewalling: MASQUERADE
User Control: yes
Accept these settings and adjust configuration files (y/n)?y

三、在/etc/rc.d/rc.local中加入如下:

echo 1 >; /proc/sys/net/ipv4/ip_forward
iptables -t nat -A POSTROUTING -s 192.168.0.0/24 -o ppp0 -j MASQUERADE

四、重新启动机器。就OK了。

离线笨笨猪.
发帖
2239
C币
-234812
威望
406
贡献值
1
银元
-2
铜钱
5086
人人网人气币
0
只看该作者 板凳  发表于: 2010-04-13
Re:Red
我现在就使用的你要求的方法共享的。实现方法如下:不需要路由器

1:你的linux必须有双网卡,网卡配置为:
    eth0----->; 192.168.0.1 就是连接局域网的交换机用的。
    eth1----->;不设置ip也不激活它
    ppp0-----〉通过控制台或者命令行 adsl-setup 配置一个xDSL连接到internet

2:在你的服务器上面安装软件: ez-ipupdate 动态域名解析软件(网上有,可以直接下载下来,免费使用)

3: 在你的服务器上配置DNS解析。把你申请到的域名与192.168.0.1连起来。
   另外eth0的dns解析应该配置成ISP的dns服务器。

4:在服务器上配置 squid 连接共享软件。(我已经配置成功了)

5: 配置 iptables 作防火墙。(修改 /etc/sysconfig/iptables文件)
   我基本配置成功了,并作端口影射。

6:配置其他服务: ftp\pop3\smtp\web\.......

7: 客户端通过代理 192.168.0.1:3128 连接internet,windows 没有问题。

8: 剩余问题:

    iptables 非常复杂,我正在学习,配置的不好,我正在理解中。 不过应付ie浏览+OE收发邮件+QQ+游戏+其他网络应用没有问题,我正在学习关于限制方面的问题。

小技巧:
   局域网中经常有用户偷换ip地址,为管理带来不便,你可以修改 /etc/ethers(需要新创建), 里面就是一个ip地址与mac地址的对照表,把没有用的ip地址设置为一个不存在的mac地址,这样就不怕他们乱修改ip了,即使修改了,可以访问本地其他用户的windows资源,可是不能上网。哈哈。

    这些工作我也是一边学习一边配置的。 有些地方还不是太懂, 希望共同学习进步,我的在线联系方法为: QQ:  328732
快速回复
限100 字节
如果您在写长篇帖子又不马上发表,建议存为草稿
 
上一个 下一个