㈠ fedora 16 怎麼上網 求詳細解答。謝謝!! 我的是pppoe撥號方式
在root下:
1、yum install rp-pppoe
2、pppoe-setup
3.開始在終端輸入命令設置寬頻(超級用戶下) :
# pppoe-setup (設置寬頻,在ubuntu下的命令是sudo pppoeconf)
Welcome to the Roaring Penguin ADSL client setup. First, I will run some checks on your system to make sure the PPPoE client is installed properly… Looks good! Now, please enter some information:
USER NAME
>;>;>; Enter your PPPoE user name (default XXX): (在這里輸入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 ethn, where 『n』 is a number. (default eth0):(輸入網卡介面名,如果只有一個網卡就在這里輸入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 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 )
PASSWORD
>;>;>; Please enter your PPPoE password:(輸入ADSL密碼)
>;>;>; Please re-enter your PPPoE password:(再輸入一次 )
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):(這里是設置防火牆的,0:表示不設置防牆,為是最好連上網,這里就選擇0)
** Summary of what you entered **
Ethernet Interface: eth0
User name: XXX
Activate-on-demand: No
DNS: Do not adjust
Firewalling: MASQUERADE
>;>;>; Accept these settings and adjust configuration files (y/n)?(這里輸入y即可,輸入n就是重頭設置過。)
配置完成!
啟動撥號命令:/sbin/ifup ppp0
停止網路命令:/sbin/ifdown ppp0
查看網路狀態:/sbin/pppoe-status
㈡ Fedora Server 如何聯網 無線 動態IP
fedora連接網路
我的網路通過路由器連接的,沒有開通dhcp,所以需要手動指定IP地址信息。
手動設置方法如下:
一、手動設置上網:
(一)查看網路設備
ifconfig -a 查看網路設置,我的機器里顯示的是p2p1
(二)設置網卡IP和子網掩碼
ifconfig 192.168.1.3 netmask 255.255.255.0
#設置地址為192.168.1.3
(三)設置網關
route add default gw 192.168.1.1
現在測試一下
[root@fedora ~]# ping 8.8.8.8
PING 8.8.8.8 (8.8.8.8) 56(84) bytes of data.
64 bytes from 8.8.8.8: icmp_req=1 tt1=49 time=322 ms
....
可以看出網路通了。
再測試:
[root@fedora ~]# ping www..com
ping:unknown host www..com
發現並未找到主機,應該是DNS沒有設置。
(四)設置DNS
sudo echo 'nameserver 202.98.5.68' >> /etc/resolv.conf
也可以用vi進行編輯。
再次測試:
[root@fedora ~]# ping www..com
PING www.a.shifen.com (61.135.169.125) 56(84) bytes of data
64 bytes from 61.135.169.125: icmp_req=1 tt1=49 time=299 ms
......
現在通了。
二、圖形化配置
在右上角的網路圖標上按右鍵打開網路配置或在系統設置>網路
打開如圖:
由於目前我用的還是ipv4,所以選擇ipv4選項,設置ip,netmask,gateway,dns等信息。保存即可。
三、通過命令system-config-network設置
在控制台下輸入:sudo system-config-network
之後會打開一個文本小窗口,根據提示設置即可。
四、修改配置文件
fedora和ubuntu配置文件不一樣,查看了一下配置文件,我的機器如下:
配置文件在:/etc/sysconfig/network-scripts目錄下
配置文件為:ifcfg-eth0 #這兒是鏈接名,最開始我的是ifcfg-p2p1後來修改了鏈接名。
UUID="8f88bdf8-063c-4d47-bdb0-1cc0cbe5bb2a"
NM_CONTROLLED=yes
BOOTPROTO=none #這兒可以設置靜態或動態值為dhcp或static
DEVICE=eth0 #哪個網卡
ONBOOT=yes #開機引導時激活
TYPE=Ethernet #網路類型
IPADDR0=192.168.1.3 #靜態IP地址
PREFIX0=24
GATEWAY0=192.168.1.1 #網關
DNS1=202.98.5.68 #DNS設置
DEFROUTE=yes
IPV4_FAILURE_FATAL=no
IPV6INIT=no
NAME=eth0
USERCTL=no
DNS2=202.98.0.68 #DNS2設置
HWADDR=08:00:27:7D:07:5F #硬體地址
配置完成,需要重啟一下服務:
service network restart
或:/etc/init.d/network restart
手動修改配置文件,我沒有測試,有命令行和圖形界面還是比較方便。
㈢ 怎樣在安裝fedora時設置網路
在安裝的時候,如果你採用的是選擇用硬碟安裝的話,就不會出現設置網路的項目,如果在選擇安裝鏡像的時候,選擇返回上一級,選擇使用網路安裝的時候,就會出現設置網路的界面,可以使自動獲取,也可以自己設置靜態的網路ip地址,這個根據你的需要進行設置就行了。
祝你使用愉快!
㈣ Fedora Linux如何設置網卡自動獲取網路地址
# ifconfig eth0 up 第二步:設置網卡進入系統時啟動 想要每次開機就可以自動獲取IP地址上網,就要設置網路服務在系統啟動時也啟動。Linux有一點與windows不同的是很多服務默認是停止的,而且你在某次使用該服務時啟動這個服務,但是沒設置它為默認啟動,則下次進入系統這個服務依然是停止的。下面是設置網路服務在系統啟動時也啟動的方法。 使用chkconfig命令讓網路服務在系統啟動級別是2345時默認啟動。 # chkconfig --level 2345 network on 第三步:修改網卡文件ifcfg-eth0 修改ifcfg-eth0文件,設置ONBOOT的值為yes,讓網路服務啟動時使用該網卡。設置BOOTPROTO的值為dhcp,讓網卡從DHCP伺服器自動獲取IP地址。 # vi /etc/sysconfig/network-scripts/ifcfg-eth0ONBOOT=yesBOOTPROTO=dhcp總結:通常情況下第三步是最重要的,因為大部分Linux系統默認網路服務是系統啟動時也啟動的,網卡也是啟用的,只要設置好第三步,然後使用下面的命令啟動網路服務就OK。 # service network start 配置靜態IP地址上網與動態IP地址上網同出一轍,修改ifcfg-eth0,然後用命令service network retart重啟網路服務。 DEVICE=eth0 IPADDR=192.168.1.100 NETMASK=255.255.255.0 GATEWAY=192.168.1.1 DNS=8.8.8.8 BOOTPROTO=staticONBOOT=yes進行以上三步後,可以獲得ip了。但後來又出現不能獲取ip,並且重復以上也沒作用。 使用#dhclient eth0備註:Linux Force DHCP client (dhclient) to renew ip address Linux renew ip command $ sudo dhclient -r //release ip 釋放IP $ sudo dhclient //獲取IP Now obtain fresh IP: $ sudo dhclient There is no need to restart network service. Above command should work with any Linux distro such as RHEL, Fedora, CentOS,
㈤ fedora下怎樣進行網路配置
vim /etc/sysconfig/network-script/ifcfg-XXX文件
配置靜態IP地址參數如下:
IPADDR=地址(例子 192.168.1.10)
NETMAKE=掩碼(255.255.255.0)
NETWORK=網段(192.168.1.0)
GATEWAY=網關(192.168.1.1)
查看網路信息 (ifconfig)
㈥ 想問下fedora 15如何設置網路才能連接寬頻上網求指點。。
打開搜索軟體界面(就是那個有很多圖標的界面的右上角)。輸入nm,之後會搜出網路連接設置。在裡面把寬頻賬號,密碼設置好。設置為自動連接。這樣每次開機時就會自動連上網了。
㈦ fedora網路配置
查看你使用的IP網卡
ifconfig -a
找到你要Fedora 網路使用的網卡
vi /etc/sysconfig/network-scripts/ifcfg-eth0
# Intel Corporation 82801BA/BAM/CA/CAM Ethernet Controller
DEVICE=eth0
BOOTPROTO=static
#BROADCAST=59.188.15.255
HWADDR=00:02:A5:F5:80:23
IPADDR=59.188.15.117
NETMASK=255.255.255.240
#NETWORK=59.188.15.0
ONBOOT=yes
其實網關也可以在這里邊設置GATEWAY=192.168.0.1
㈧ Fedora版的Linux怎麼配置ip
【修改IP地址】
1、使用Setup命令
使用setup命令進入圖形界面,根據提示進入Network
Configuration,Edit
Device,根據提示進行ip設置
2、直接編輯文件進行修改
#
vi
/etc/sysconfig/network-scripts/ifcfg-eth0
此處的ifcfg-eth0為對應的網卡配置文件
文件中的配置項:
DEVICE=eth0
#描述網卡對應的設備別名,例如ifcfg-eth0的文件中它為eth0
BOOTPROTO=static
#設置網卡獲得ip地址的方式,可能的選項為static,dhcp或bootp,分別對應靜態指定的
ip地址,通過dhcp協議獲得的ip地址,通過bootp協議獲得的ip地址
BROADCAST=192.168.0.255
#對應的子網廣播地址
HWADDR=00:07:E9:05:E8:B4
#對應的網卡物理地址
IPADDR=12.168.1.2
#如果設置網卡獲得
ip地址的方式為靜態指定,此欄位就指定了網卡對應的ip地址
IPV6INIT=no
IPV6_AUTOCONF=no
NETMASK=255.255.255.0
#網卡對應的網路掩碼
NETWORK=192.168.1.0
#網卡對應的網路地址
ONBOOT=yes
#系統啟動時是否設置此網路介面,設置為yes時,系統啟動時激活此設備
,這個很關鍵,如果想要啟用一定要設置為yes,否則無論如何重啟都不會起作用的。
㈨ Fedora8 怎麼 配置本地網路連接
配置網卡的IP地址
ifconfig
eth0
192.168.0.1
netmask
255.255.255.0
在eth0上配置上192.168.0.1
的IP地址及24位掩碼。若想再在eth0上在配置一個192.168.1.1/24
的IP地址怎麼辦?用下面的命令
ifconfig
eth0:0
192.168.1.1
netmask
255.255.255.0
這時再用ifconifg命令查看,就可以看到兩個網卡的信息了,分別為:eth0和eth0:0.若還想再增加IP,那網卡的命名就接著是:eth0:1、eth0:2……想要幾個就填幾個。ok!
配置網卡的硬體地址
ifconfig
eth0
hw
ether
xx:xx:xx:xx:xx:xx就將網卡的硬體地址更改了,此時你就可以騙過區域網內的IP地址邦定了。
將網卡禁用
ifconfig
eth0
down
將網卡啟用
ifconfig
eth0
up
ifconfig
命令的功能很強大,還可以設置網卡的MTU,混雜模式等。就不一一介紹了,用時間可以自己研究一下。
㈩ fedora虛擬機怎樣連接網路
將虛擬機網卡設置為「橋接」模式,配置好IP地址或者自動獲取IP地址後,虛擬機系統就可以上網了。