Linux 的網路功能相當的強悍,一時之間我們也無法完全的介紹所有的網路指令,這個章節主要的目的在介紹一些常見的網路指令而已。至於每個指令的詳細用途將在後續伺服器架設時,依照指令的相關性來進行說明。當然,在這個章節的主要目的是在於將所有的指令彙整在一起,比較容易瞭解啦! |
[root@test
test]# ifconfig interface
[root@test test]# ifconfig interface [options] 參數說明: interface :網路介面卡代號,例如 eth0, eth1... options :主要有以下幾個參數 network :網段 broadcast :廣播網段 netmask :子網路遮罩 up|down :啟動|關閉網路介面 範例: [root@test root]# ifconfig # 這個指令在沒有加上網路卡時,會將所有的網路介面內容顯示出來 eth0 Link encap:Ethernet HWaddr 00:50:FC:22:9C:57 inet addr:192.168.1.2 Bcast:192.168.1.255 Mask:255.255.255.0 UP BROADCAST RUNNING MULTICAST MTU:1500 Metric:1 RX packets:5793395 errors:0 dropped:0 overruns:0 frame:0 TX packets:6032143 errors:0 dropped:0 overruns:0 carrier:0 collisions:983 txqueuelen:100 RX bytes:534796148 (510.0 Mb) TX bytes:2607882970 (2487.0 Mb) Interrupt:10 Base address:0x6100 lo Link encap:Local Loopback inet addr:127.0.0.1 Mask:255.0.0.0 UP LOOPBACK RUNNING MTU:16436 Metric:1 RX packets:3258 errors:0 dropped:0 overruns:0 frame:0 TX packets:3258 errors:0 dropped:0 overruns:0 carrier:0 collisions:0 txqueuelen:0 RX bytes:170063 (166.0 Kb) TX bytes:170063 (166.0 Kb) [root@test root]# ifconfig eth0 192.168.0.2 netmask 255.255.255.0 \ > broadcast 192.168.0.255 上面再將 eth0 這個網路介面的 IP 屬性修改為 192.168.0.2 這個 IP ,廣播位址也跟著改變了! [root@test root]# ifconfig eth0 # 將修改完的咚咚顯示出來一下! eth0 Link encap:Ethernet HWaddr 00:50:FC:22:9C:57 inet addr:192.168.0.2 Bcast:192.168.0.255 Mask:255.255.255.0 UP BROADCAST RUNNING MULTICAST MTU:1500 Metric:1 RX packets:5793395 errors:0 dropped:0 overruns:0 frame:0 TX packets:6032143 errors:0 dropped:0 overruns:0 carrier:0 collisions:983 txqueuelen:100 RX bytes:534796148 (510.0 Mb) TX bytes:2607882970 (2487.0 Mb) Interrupt:10 Base address:0x6100 [root@test root]# ifconfig eth0 down <==關閉 eth0 網路卡 [root@test root]# ifconfig eth0 up <==啟動 eth0 網路卡! |
[root@test
root]# ifup [interface]
[root@test root]# ifdown [interface] 參數說明: 範例: [root@test root]# ifup eth0 <==啟動 eth0 這塊網路卡! [root@test root]# ifdown eth0<==關閉 eth0 這塊網路卡 |
[root@test
root]# route [-nee]
[root@test root]# route add [-net|-host] 目標主機或網域 [netmask] [gw|dev] [root@test root]# route del [-net|-host] 目標主機或網域 [netmask] [gw|dev] 參數說明: -n :列出的資訊以 IP 來顯示 -ee :列出較長列的資訊 add :增加路由資訊 del :刪除一個路由資訊 -net :增加一個『網域』的路由,例如 C Class 的網域! -host :增加到某個 IP 主機的路由! netmask :就是 netmask 呀! gw :這個是路由的通訊閘! gw 是以 IP 來建置的 dev :這個是路由的通訊閘! dev 是以 介面 ( internet ) 代號來建置的! 範例: [root@test root]# route<==看路由的資訊! Kernel IP routing table Destination Gateway Genmask Flags Metric Ref Use Iface 140.116.141.253 * 255.255.255.255 UH 0 0 0 ppp0 192.168.1.0 * 255.255.255.0 U 0 0 0 eth0 127.0.0.0 * 255.0.0.0 U 0 0 0 lo default 140.116.141.253 0.0.0.0 UG 0 0 0 ppp0 [root@test root]# route -n <==以 IP 的方式來顯示路由! Kernel IP routing table Destination Gateway Genmask Flags Metric Ref Use Iface 140.116.141.253 0.0.0.0 255.255.255.255 UH 0 0 0 ppp0 192.168.1.0 0.0.0.0 255.255.255.0 U 0 0 0 eth0 127.0.0.0 0.0.0.0 255.0.0.0 U 0 0 0 lo 0.0.0.0 140.116.141.253 0.0.0.0 UG 0 0 0 ppp0 注意到 route, route -n 這兩個範例喔!使用 -n 與否會使 domain 是否進行查詢, 一般來說,我都喜歡加上 -n 的,因為不必去查詢正反解,顯示速度較快, 此外, default gateway 就是 0.0.0.0 喔! [root@test root]# route add -net 192.168.0.0 netmask 255.255.255.0 dev eth0 # 新增一個路由規則! [root@test root]# route del -net 192.168.0.0 netmask 255.255.255.0 dev eth0 # 刪除一個路由囉 [root@test root]# route add default gw 192.168.1.2 # 增加一個 default gateway 呢! 注意一下, gw 後面接的是 IP ,而 dev 後面接的則是裝置代號喔! |
[test@test
test]# ping [-b broadcast]
[test@test test]# ping [-c number] host 參數說明: -b broadcast :當要 ping 一個網段時,可以使用這個方式來『廣播』! -c number :後面加上 number (數字)可以限制 ping 幾次! 範例: [test@test test]# ping -c 5 tw.yahoo.com <==除了IP也可以 ping domain name! PING tw.yahoo.com (202.1.237.21) from 61.28.113.1 : 56(84) bytes of data. 64 bytes from tw.yahoo.com (202.1.237.21): icmp_seq=0 ttl=245 time=7.133 msec 64 bytes from tw.yahoo.com (202.1.237.21): icmp_seq=1 ttl=245 time=7.497 msec 64 bytes from tw.yahoo.com (202.1.237.21): icmp_seq=2 ttl=245 time=6.625 msec 64 bytes from tw.yahoo.com (202.1.237.21): icmp_seq=3 ttl=245 time=6.457 msec 64 bytes from tw.yahoo.com (202.1.237.21): icmp_seq=4 ttl=245 time=6.434 msec --- tw.yahoo.com ping statistics --- 5 packets transmitted, 5 packets received, 0% packet loss round-trip min/avg/max/mdev = 6.434/6.829/7.497/0.421 ms [test@test test]# ping -b 192.168.1.255 -c 2 <==這裡必須是廣播位址 WARNING: pinging broadcast address PING 192.168.1.255 (192.168.1.255) from 192.168.1.254 : 56(84) bytes of data. 64 bytes from 192.168.1.36: icmp_seq=0 ttl=255 time=191 usec 64 bytes from 192.168.1.45: icmp_seq=0 ttl=255 time=492 usec (DUP!) 64 bytes from 192.168.1.254: icmp_seq=0 ttl=255 time=531 usec (DUP!) --- 140.116.44.255 ping statistics --- 2 packets transmitted, 2 packets received, +6 duplicates, 0% packet loss round-trip min/avg/max/mdev = 0.134/0.811/2.094/0.647 ms |
[root@test
root]# traceroute [-i interface] [-g gateway]
[host|IP]
參數說明: -i :使用這個 interface 來連出去!例如 eth0, ppp0 等! -g :使用這個 gateway 來連出去!例如 192.168.1.2, 140.116.141.29 等! 範例: [root@test root]# traceroute tw.yahoo.com traceroute to tw.yahoo.com (202.1.237.21), 30 hops max, 38 byte packets 1 140.116.141.253 (140.116.141.253) 123.958 ms 96.357 ms 97.810 ms 2 140.116.140.253 (140.116.140.253) 103.548 ms 87.607 ms 78.227 ms 3 163.28.112.253 (163.28.112.253) 99.522 ms 84.379 ms 79.858 ms 4 210.242.251.246 (210.242.251.246) 104.429 ms 86.622 ms 79.857 ms 5 211.22.226.50 (211.22.226.50) 97.897 ms 86.031 ms 87.177 ms 6 TaiPei-TANET-P1.BR.HiNet.NET (168.95.207.242) 101.981 ms 58.149 ms 60.231 ms 7 168.95.17.162 (168.95.17.162) 69.198 ms 63.294 ms 58.594 ms 8 210.65.200.10 (210.65.200.10) 65.950 ms 67.336 ms 63.503 ms 9 211.22.35.169 (211.22.35.169) 67.572 ms 92.535 ms 83.105 ms 10 211.22.41.89 (211.22.41.89) 106.855 ms 92.540 ms 87.201 ms 11 alteon6.tpe.yahoo.com (202.1.237.253) 122.347 ms 92.235 ms 91.266 ms |
[root@test
root]# netstat [-r] [-i interface]
[root@test root]# netstat [-antulp] 參數說明: -r :顯示出 route 的意思; -i :顯示出 interface 的內容,跟 ifconfig 類似啦! -a :顯示出目前所有的網路連線狀態! -n :預設情況中,顯示出的 host 會以 host name 來顯現,若為 n 則可以使 port 與 host 都以數字顯示 -t :僅顯示 tcp 封包的連線行為 -u :僅顯示 udp 的封包連線狀態 -l :僅顯示 LISTEN 的內容 -p :同時顯示此一連線的 PID 喔!(注意:只有 root 才能行使此功能!) 範例: [root@test root]# netstat -r # 嘿嘿!顯示出目前的路由表!與 route 指令的功能相同。 Kernel IP routing table Destination Gateway Genmask Flags MSS Window irtt Iface 140.116.141.253 * 255.255.255.255 UH 40 0 0 ppp0 192.168.1.0 * 255.255.255.0 U 40 0 0 eth0 192.168.0.0 * 255.255.255.0 U 40 0 0 eth0 127.0.0.0 * 255.0.0.0 U 40 0 0 lo default 140.116.141.253 0.0.0.0 UG 40 0 0 ppp0 [root@test root]# netstat -i eth0 # 看看底下顯示出的內容,是否跟 ifconfig eth0 類似呀!? Kernel Interface table Iface MTU Met RX-OK RX-ERR RX-DRP RX-OVR TX-OK TX-ERR TX-DRP TX-OVR Flg eth0 1500 077199373 0 0 169616342 0 0 0 BMRU lo 16436 0 1130485 0 0 0 1130485 0 0 0 LRU [root@test root]# netstat -an<==顯示所有的連線狀態,並且以數字型態顯示 [root@test root]# netstat -tul <==顯示 LISTEN 的及 tcp 與 udp 的連線狀態,如下: Active Internet connections (only servers) Proto Recv-Q Send-Q Local Address Foreign Address State tcp 0 0 *:mysql *:* LISTEN tcp 0 0 *:netbios-ssn *:* LISTEN tcp 0 0 *:pop3 *:* LISTEN tcp 0 0 *:http *:* LISTEN tcp 0 0 *:ftp *:* LISTEN tcp 0 0 *:ssh *:* LISTEN tcp 0 0 *:smtp *:* LISTEN udp 0 0 *:netbios-ns *:* 注意:上面的 LISTEN 表示該 port 是已經在 監聽 網路服務啦!而左邊的 tcp 指的是 tcp 封包! [root@test root]# netstat -anp | more <==這個指令很常下達!請記得呦! |
[root@test
root]# host [-a] domain_name
參數說明: -a :顯示出所有的資訊 範例: [root@test root]# host tw.yahoo.com <==僅顯示出主機的 IP tw.yahoo.com. has address 202.1.237.21 [root@test root]# host -a tw.yahoo.com <==所有的主機資訊顯示! Trying "tw.yahoo.com." ;; ->>HEADER<<- opcode: QUERY, status: NOERROR, id: 59138 ;; flags: qr rd ra; QUERY: 1, ANSWER: 1, AUTHORITY: 5, ADDITIONAL: 5 ;; QUESTION
SECTION:
;; ANSWER SECTION:
;; AUTHORITY
SECTION:
;; ADDITIONAL
SECTION:
Received 216 bytes from 163.28.112.1#53 in 10 ms |
[root@test
root]# nslookup [domain_name|IP]
參數說明: 範例: [root@test root]# nslookup tw.yahoo.com <==由 domain name 查詢 IP! Note: nslookup is deprecated and may be removed from future releases. Consider using the `dig' or `host' programs instead. Run nslookup with the `-sil[ent]' option to prevent this message from appearing. Server: 163.28.112.1 Address: 163.28.112.1#53 Non-authoritative
answer:
[root@test root]#
nslookup
202.1.237.21 <==由 IP 查詢 domain name
Non-authoritative
answer:
Authoritative
answers can be found from:
|
[root@test
root]# telnet [-8] [host|IP] [port]
參數說明: -8 :可以減少亂碼的情況 port:服務的埠口!例如 POP3 的 110 ,SMTP 的 25 port 等等!telnet 可以用來偵測! 範例: [root@test root]# telnet -8 bbs.sayya.org bbs.sayya.org ? SayYA Linux 資訊站 ? 140.113.22.98 歡迎光臨【 SayYA 資訊站 】目前線上人數 [41] 人 【 SayYa Linux's BBS 站台 】
一個以 Linux 消息、知識、互動服務之專業 BBS 站
參觀用帳號:guest,申請新帳號:new 請輸入代號:guest
[root@test root]#
telnet
localhost 110
|
[root@test
root]# ftp [-p] host [port]
參數說明: -p :啟動 PASSIVE 模式! 範例: [root@test root]# ftp localhost <==預設是以 port 21 來進行連線 [root@test root]# ftp localhost 1354 # 如果您設定的 ftp 的 port 非正規的 21 ,則可以這樣! [root@test root]# ftp localhost <==連接到遠端主機 Connected to localhost (127.0.0.1). 220 localhost FTP server (Version wu-2.6.1-20) ready. Name (127.0.0.1:test): test <==輸入帳號 331 Password required for test. Password: <==輸入密碼 230 User test logged in. Remote system type is UNIX. Using binary mode to transfer files. ftp> dir <==顯示遠方主機的內容 ftp> cd <==變換遠端主機的目錄 ftp> close or bye or exit <==離開遠端主機 ftp> get file <==取得遠端主機的檔案 ftp> mget file <==取得所有的檔案,較 get 好用!例如 mget .bash* ftp> put file <==將本地端檔案 file 丟到遠端主機上 ftp> mputfile <==將一些檔案上傳咯 ftp> delete file <==殺掉遠端主機的 file 檔案 ftp> help <==顯示求救指令! ftp> mkdir dir <==在遠端主機上面建立目錄 ftp> lcd <==變換本地端路徑! ftp> ascii or binary <==以 ASCII 模式或 BINARY 模式捉取資料!? |
[root@test
root]# ncftp [host]
[root@test root]# ncftp [ftp://domain.name/path] 參數說明: 可以直接連接到 host 主機,也可以直接連接到主機的某個路徑之下,相當的方便 範例: [root@test root]# ncftp ftp.nsysu.edu.tw <==連接到中山大學 FTP 站 [root@test root]# ncftp ftp://ftp.nsysu.edu.tw/Linux # 直接連接到該 FTP 主機裡面的 Linux 目錄下! # 不過底下的畫面因為經過轉存,所以產生了亂碼∼在 Putty 底下是正常的! NcFTP 3.0.3 (April 15, 2001) by Mike Gleason (ncftp@ncftp.com). Copyright (c)
1992-2001 by Mike Gleason.
Connecting to ftp.nsysu.edu.tw... ======================================================================
========================================================================
遠端主機的一些服務指令:
本地端主機的一些指令功能:
|
[root@test
root]# lynx http://web.site
參數說明: 範例: [root@test root]# lynx http://tw.yahoo.com tw.yahoo.com cookie: B=b7hd3jkukeu1e&b=2 Allow? (Y/N/Always/neVer) A # 上面輸入 A 就可以接受 cookie 了! Yahoo!奇摩 (p1 of 5) [USEMAP:yk_masthead_142.gif]
小中~蓎胣語 9成國小偷跑 法國熱浪 死亡人數直衝5千人 南洋-
如何沖印出好照片?
【拍賣】 [auc_ani.gif]
|
[root@test
root]# vi /etc/lynx.cfg
.... 略 ....找到底下的三行字串 ##CHARACTER_SET:iso-8859-1 <==大約在 394 行處 #ASSUME_CHARSET:iso-8859-1 <==大約在 409 行處 #PREFERRED_LANGUAGE:en <==大約在 537 行處 將上面三行的 # 符號取消,並且改成底下這樣: CHARACTER_SET:big5 <==這就是 Big5 中文的編碼 ASSUME_CHARSET:big5 <==跟上面的說明一樣! PREFERRED_LANGUAGE:zh_TW <==這個就是語系的支援! 語系的支援方面,您可以查看一下 /etc/sysconfig/i18n 這個檔案, zh_TW 指的就是台灣!做了上面設定之後,就可以看中文囉! |
[root@test root]# lynx -dump http://the.site.doname.name/xxx.gif > file.gif |
[root@test
root]# wget http://domain.name/file
[root@test root]# wget http://ftp.nsysu.edu.tw/Unix/Web/counter/Count2.6/Count2.6/download/src/wwwcount2.6.tar.gz --14:54:45-- http://ftp.nsysu.edu.tw/Unix/Web/counter/Count2.6/Count2.6/download/src/wwwcount2.6.tar.gz => `wwwcount2.6.tar.gz' Connecting to ftp.nsysu.edu.tw:80... connected! HTTP request sent, awaiting response... 200 OK Length: 433,312 [application/x-gzip]
0K .......... .......... .......... .......... .......... 11% @ 746.27
KB/s
14:54:46 (780.73 KB/s) - `wwwcount2.6.tar.gz' saved [433312/433312] |
[root@test
root]# vi /etc/wgetrc
.... 略 ....找到底下的兩行字串 #http_proxy = http://proxy.yoyodyne.com:18023/ <==在 75 行處 #use_proxy = on <==在 78 行處 將上面兩行的 # 符號取消,並且改成底下這樣: http_proxy = http://proxy.ncku.edu.tw:3128/ use_proxy = no |
[root@test
root]# wget http://www.svgalib.org/svgalib-1.4.3.tar.gz
[root@test root]# wget http://jmcce.slat.org/DOWNLOAD/jmcce-1.4RC2.tar.gz |
1. 先安裝 svgalib
1.1 如果以 RPM 安裝的話(較不建議): [root@test root]# rpm -ivh svgalib-*.rpm 這樣就 OK 了! 1.2 如果以 Tarball 安裝的話(較建議的安裝模式): [root@test root]# cd /usr/local/src [root@test src]# tar -zxvf /root/svgalib-1.4.3.tar.gz [root@test src]# cd svgalib-1.4.3 [root@test svgalib-1.4.3]# cd utils/ [root@test utils]# ln -s ../src/vga.h vga.h [root@test utils]# vi Makefile # 找到底下這一行( 約在第 16 行 ): CFLAGS = $(WARN) $(OPTIMIZE) -I../include # 修改成: CFLAGS = $(WARN) $(OPTIMIZE) -I../include -L../sharedlib [root@test utils]# cd .. [root@test svgalib-1.4.3]# make install [root@test svgalib-1.4.3]# cd /usr/lib [root@test lib]# ln -s /usr/local/lib/libvga.so.1 . # 會有一些錯誤訊息,不過只與 man 有關,沒有關係!先略過去! 2. 再安裝 jmcce 這個套件吧! [root@test root]# rpm -e libtool autoconf automake # 先移除一些較新的套件咯! 2.1 先裝 autoconf [root@test root]# cd /usr/local/src [root@test src]# tar -zxvf /root/autoconf-2.13.tar.gz [root@test src]# cd autoconf-2.13 [root@test autoconf-2.13]# ./configure --prefix=/usr/local [root@test autoconf-2.13]# make && make install 2.2 安裝 automake [root@test autoconf-2.13]# cd /usr/local/src [root@test src]# tar -zxvf /root/automake-1.4.tar.gz [root@test src]# cd automake-1.4 [root@test automake-1.4]# ./configure --prefix=/usr/local [root@test automake-1.4]# make && make install 2.3 安裝 libtool [root@test automake-1.4]# cd /usr/local/src [root@test src]# tar -zxvf /root/libtool-1.4.2.tar.gz [root@test src]# cd libtool-1.4.2 [root@test libtool-1.4.2]# ./configure --prefix=/usr/local [root@test libtool-1.4.2]# make && make install 2.4 安裝 jmcce [root@test libtool-1.4.2]# cd /usr/local/src [root@test src]# tar -zxvf /root/jmcce-1.4RC2.tar.gz [root@test src]# cd jmcce-1.4RC2/ [root@test jmcce-1.4RC2]# LANG=zh_TW.Big5 [root@test jmcce-1.4RC2]# vi /etc/sysconfig/i18n # 可以將他改成中文顯示喔!底下的模樣修改 LANG="zh_TW.Big5" [root@test jmcce-1.4RC2]# vi genconf.sh # 找到這一行: bin_PATH="/usr/bin" # 將他改成: bin_PATH="/usr/local/bin" [root@test jmcce-1.4RC2]# ./genconf.sh ; ./genconf.sh # 這個動作要多做幾次,不然老是有一些怪怪的錯誤訊息! # 最後還是會出現一個錯誤訊息,就是底下的樣子: configure.in: 13: required file `build/ltconfig' not found # 不過這個訊息不會影響最後的編譯結果,所以就不要管他了! [root@test jmcce-1.4RC2]# ./configure --prefix=/usr \ > --sysconfdir=/etc/chinese/jmcce [root@test jmcce-1.4RC2]# make && make install 3. 移除暫存中間檔案,將新版套件安裝回來! [root@test jmcce-1.4RC2]# cd /usr/local/src/autoconf-2.13/ && make uninstall [root@test autoconf-2.13]# cd /usr/local/src/automake-1.4/ && make uninstall [root@test automake-1.4]# cd /usr/local/src/libtool-1.4.2/ && make uninstall # 拿出原版光碟,安裝 autoconf, automake 與 libtool 吧! |
jmcce
(程式依現行 locale 自動決定繁體模式)
jmcce -b (手動強迫以 BIG5碼繁體中文操作) jmcce -g (手動強迫以 GB碼簡體中文操作) jmcce -d (僅顯示中文而不載入任何中文輸入法,繁體模式自動) CTRL-SPACE ===> 中英切換 CTRL-ALT-0-9 ===> 輸入法選擇 CTRL-ALT-1 ===> 倉頡輸入法 CTRL-ALT-2 ===> 簡易輸入法 CTRL-ALT-3 ===> 注音輸入法 (Linux/CXterm 傳統「零壹注音輸入法」) CTRL-ALT-4 ===> 慈安輸入法 (方快科技關慈安先生提供,含三十萬詞彙快速輸入) CTRL-ALT-5 ===> 行列輸入法 CTRL-ALT-6 ===> 英快輸入法 (方快科技提供,大幅改良的英漢輸入法) CTRL-ALT-7 ===> 酷音輸入法 (智慧型注音輸入) CTRL-ALT-8 ===> 日文拼音輸入法 (輕鬆資訊提供,可用拼音輸入所有假名與三萬漢字詞彙) CTRL-ALT-9 ===> 無蝦米輸入法 (只要自備合法對照表即可加掛啟動) CTRL-ALT-0 ===> 內碼輸入法 |
|
MTU |
EtherNet (一般的網路介面,這也是預設值) | 1500 |
PPPoE(ADSL用的) | 1492 |
Dial-up(modem) | 576 |
C:\WINDOWS>
ping
-f -l 1500 192.168.1.2
Pinging 192.168.1.2 with 1500 bytes of data: Packet needs
to be fragmented but DF set.
Ping statistics
for 192.168.1.2:
|
C:\WINDOWS>
ping -f -l 1464 192.168.1.2
Pinging 192.168.1.2 with 1464 bytes of data: Reply from 192.168.1.2:
bytes=1464 time=10ms TTL=128
Ping statistics
for 192.168.1.2:
|
[root@test
root]# ping -c 3 -M do -s 1472 192.168.1.2
PING 192.168.1.2 (192.168.1.2) from 192.168.1.13 : 1472(1500) bytes of data. 1480 bytes from 192.168.1.2: icmp_seq=0 ttl=255 time=2.408 msec 1480 bytes from 192.168.1.2: icmp_seq=1 ttl=255 time=2.392 msec 1480 bytes from 192.168.1.2: icmp_seq=2 ttl=255 time=2.440 msec --- 192.168.1.2 ping statistics --- 3 packets transmitted, 3 packets received, 0% packet loss round-trip min/avg/max/mdev = 2.392/2.413/2.440/0.044 ms [root@test root]# ping -c 3 -M do -s 1473 192.168.1.2 PING 192.168.1.2 (192.168.1.2) from 192.168.1.13 : 1473(1501) bytes of data. ping: sendto: Message too long ping: sendto: Message too long ping: sendto: Message too long --- 192.168.1.2
ping statistics ---
|
[root@test root]# ifconfig eth0 mtu 1500 |