linux redhat9.0/fedora4.0下adsl上網和配置全過程(轉)
linux redhat9.0/fedora4.0下adsl上網和配置全過程(轉)[@more@]現在有很多想學習linux的人, 就是因為不能配置上網,所以不想學習現在我從adsl配置到nat全過程如下:
1)安裝rp-pppoe-3.5-2包
在安裝系統時,對新使用者一般選擇全部安裝的,那就安裝了,以後rpm, 或者tarball了,這很方便,對初學者:
eg:
rpm -ivh rp-pppoe-3.5-2.rpm
tarball 安裝:
tar zxvf rp-pppoe-3.5-2.tar.gz
cd rp-pppoe-3.5-2
./configure
make
make install
2)rp-pppoe-3.5-2配置
步驟:
a) 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...
The following DSL config was found on your system:
Device: Name:
ppp0
Please enter the device if you want to configure the present DSL config
(default ppp0) or enter 'n' if you want to create a new one:
//這是我已經安裝過了,主要是寫文件:選擇預設按回車
LOGIN NAME
Enter your Login Name (default lanlgn409ldj@zgcnc):
//這是我已經安裝過了,:沒有安裝是輸入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):
//選擇預設按回車
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 ISP's 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:
// 輸入server自動得到dns,server的ip
PASSWORD
Please 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):
//選擇預設按回車問你是否連線
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):
//是否設定firwall
Do you want to start this connection at boot time?
Please enter no or yes (default no):
//啟動時是否連線
Do you want to start this connection at boot time?
Please enter no or yes (default no):
** Summary of what you entered **
Ethernet Interface: eth0
User name: lanlgn409ldj@zgcnc
Activate-on-demand: No
DNS: Do not adjust
Firewalling: NONE
User Control: yes
Accept these settings and adjust configuration files (y/n)?
//是否寫入配置檔案裡 選擇 y
3)假如你是用別人的mac連線
1 redhat9.0改mac:
ifconfig eth0 down
ifconfig eth0 hw ether 5254ab323d51
ifconfig eth0 up
ifup ppp0
2 fedora 4.0改mac:
ifdown eth0
ifconfig eth0 hw ether 5254ab323d51
ifup eth0
ifup ppp0 & adsl-start
4)測試一下
ping
5)做nat
echo "1" > /proc/sys/net/ipv4/ip_forward //這很重要,路由轉發
modprobe ip_tables
modprobe ip_nat_ftp
modprobe ip_nat_irc
modprobe ip_conntrack
modprobe ip_conntrack_ftp
modprobe ip_conntrack_irc
/sbin/iptables -F
/sbin/iptables -X
/sbin/iptables -Z
/sbin/iptables -F -t nat
/sbin/iptables -X -t nat
/sbin/iptables -Z -t nat
/sbin/iptables -P INPUT ACCEPT
/sbin/iptables -P OUTPUT ACCEPT
/sbin/iptables -P FORWARD ACCEPT
/sbin/iptables -t nat -P PREROUTING ACCEPT
/sbin/iptables -t nat -P POSTROUTING ACCEPT
/sbin/iptables -t nat -P OUTPUT ACCEPT
/sbin/iptables -t nat -A POSTROUTING -o ppp0 -s 192.168.0.0/24 -j MASQUERADE//不是adsl也可以把ppp0改成eth0 ,
1一般網路卡nat:
[root@test root]# vi /etc/sysconfig/network-scripts/ifcfg-eth0
DEVICE=eth0
BOOTPROTO=dhcp
BROADCAST=192.168.0.255
IPADDR=192.168.0.1
NETMASK=255.255.255.0
NETWORK=192.168.0.0
ONBOOT=yes
[root@test root]# vi /etc/sysconfig/network-scripts/ifcfg-eth0:0
DEVICE=eth0:0
BOOTPROTO=static
BROADCAST=192.168..255
IPADDR=192.168.1.2
NETMASK=255.255.255.0
NETWORK=192.168..0
ONBOOT=yes
2 兩塊網路卡nat:
只是那個 eth0:0 改成了 eth1 而已啦,其它都是一樣的設定
6)dns 設定
在裡面/etc/resolv.conf
把你的ip寫入裡面去
nameserver 192.168.0.1
然後重啟要不然,客戶機不能上網
1)安裝rp-pppoe-3.5-2包
在安裝系統時,對新使用者一般選擇全部安裝的,那就安裝了,以後rpm, 或者tarball了,這很方便,對初學者:
eg:
rpm -ivh rp-pppoe-3.5-2.rpm
tarball 安裝:
tar zxvf rp-pppoe-3.5-2.tar.gz
cd rp-pppoe-3.5-2
./configure
make
make install
2)rp-pppoe-3.5-2配置
步驟:
a) 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...
The following DSL config was found on your system:
Device: Name:
ppp0
Please enter the device if you want to configure the present DSL config
(default ppp0) or enter 'n' if you want to create a new one:
//這是我已經安裝過了,主要是寫文件:選擇預設按回車
LOGIN NAME
Enter your Login Name (default lanlgn409ldj@zgcnc):
//這是我已經安裝過了,:沒有安裝是輸入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):
//選擇預設按回車
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 ISP's 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:
// 輸入server自動得到dns,server的ip
PASSWORD
Please 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):
//選擇預設按回車問你是否連線
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):
//是否設定firwall
Do you want to start this connection at boot time?
Please enter no or yes (default no):
//啟動時是否連線
Do you want to start this connection at boot time?
Please enter no or yes (default no):
** Summary of what you entered **
Ethernet Interface: eth0
User name: lanlgn409ldj@zgcnc
Activate-on-demand: No
DNS: Do not adjust
Firewalling: NONE
User Control: yes
Accept these settings and adjust configuration files (y/n)?
//是否寫入配置檔案裡 選擇 y
3)假如你是用別人的mac連線
1 redhat9.0改mac:
ifconfig eth0 down
ifconfig eth0 hw ether 5254ab323d51
ifconfig eth0 up
ifup ppp0
2 fedora 4.0改mac:
ifdown eth0
ifconfig eth0 hw ether 5254ab323d51
ifup eth0
ifup ppp0 & adsl-start
4)測試一下
ping
5)做nat
echo "1" > /proc/sys/net/ipv4/ip_forward //這很重要,路由轉發
modprobe ip_tables
modprobe ip_nat_ftp
modprobe ip_nat_irc
modprobe ip_conntrack
modprobe ip_conntrack_ftp
modprobe ip_conntrack_irc
/sbin/iptables -F
/sbin/iptables -X
/sbin/iptables -Z
/sbin/iptables -F -t nat
/sbin/iptables -X -t nat
/sbin/iptables -Z -t nat
/sbin/iptables -P INPUT ACCEPT
/sbin/iptables -P OUTPUT ACCEPT
/sbin/iptables -P FORWARD ACCEPT
/sbin/iptables -t nat -P PREROUTING ACCEPT
/sbin/iptables -t nat -P POSTROUTING ACCEPT
/sbin/iptables -t nat -P OUTPUT ACCEPT
/sbin/iptables -t nat -A POSTROUTING -o ppp0 -s 192.168.0.0/24 -j MASQUERADE//不是adsl也可以把ppp0改成eth0 ,
1一般網路卡nat:
[root@test root]# vi /etc/sysconfig/network-scripts/ifcfg-eth0
DEVICE=eth0
BOOTPROTO=dhcp
BROADCAST=192.168.0.255
IPADDR=192.168.0.1
NETMASK=255.255.255.0
NETWORK=192.168.0.0
ONBOOT=yes
[root@test root]# vi /etc/sysconfig/network-scripts/ifcfg-eth0:0
DEVICE=eth0:0
BOOTPROTO=static
BROADCAST=192.168..255
IPADDR=192.168.1.2
NETMASK=255.255.255.0
NETWORK=192.168..0
ONBOOT=yes
2 兩塊網路卡nat:
只是那個 eth0:0 改成了 eth1 而已啦,其它都是一樣的設定
6)dns 設定
在裡面/etc/resolv.conf
把你的ip寫入裡面去
nameserver 192.168.0.1
然後重啟要不然,客戶機不能上網
來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/10617731/viewspace-959790/,如需轉載,請註明出處,否則將追究法律責任。
相關文章
- RedHat9.0上ADSL最終解決方案(轉)Redhat
- solaris 10 網路配置全過程(轉)
- linux iSCSI target配置全過程Linux
- 硬碟上安裝LINUX FC4全過程(轉)硬碟Linux
- Debian Linux 上安裝配置 ISC DHCP 伺服器全過程Linux伺服器
- RedHat7.2下ADSL雙網路卡共享上網實戰(轉)Redhat
- Linux下-LNMP環境搭建部落格網站(全過程)LinuxLNMP網站
- 在NETBSD上配置ADSL+IPF+IPNAT(轉)
- 網頁訪問全過程剖析[轉].md網頁
- Oracle10g RAC for Linux配置全過程(zt)OracleLinux
- Linux配置多線路ADSL的方法(轉)Linux
- 配置ubuntu支援ADSL(轉)Ubuntu
- 安裝,配置rp-pppoe撥號軟體,使adsl成功上網(轉)
- TDP for SQL安裝配置全過程SQL
- Keepalived配置和測試過程for linuxLinux
- Linux網路ADSL連線故障排除(轉)Linux
- Linux 上配置 syslog 伺服器過程詳解Linux伺服器
- RedHat系統ADSL配置指南(轉)Redhat
- Linux上安裝GCC編譯器過程(轉)LinuxGC編譯
- RedHat提供ADSL共享上網的解決辦法(轉)Redhat
- Linux-NFS——配置過程LinuxNFS
- slackware-10.1 下 adsl 撥號上網的 iptables 防火牆設定(轉)防火牆
- ADSL上網密碼破解記密碼
- Linux下的Oracle9i data guard配置過程LinuxOracle
- redhat 5.4下安裝MYSQL全過程RedhatMySql
- 自研AC配置(上電過程)
- Redhat9.0 Apache2+Php5.0+Mysql4.0配置(轉)RedhatApachePHPMySql
- 我的dns配置過程(轉)DNS
- 配置基於ADSL的防火牆(轉)防火牆
- 在linux(核心2.6.x)下驅動 USB ADSL(轉)Linux
- RedHat 8.0提供ADSL共享上網的解決辦法[(轉)Redhat
- redhat9.0下載地址Redhat
- Linux TCP/IP協議棧全過程LinuxTCP協議
- Windows下Jekyll配置過程詳解Windows
- vmware centos ADSL共享上網設定CentOS
- 網站入侵過程(轉)網站
- 網路螞蟻--會話命令--全過程監控--詳錄 (轉)會話
- 在Linux下使用ISDN撥號上網 (轉)Linux