時間:2015-06-28 00:00:00 來源:IT貓撲網(wǎng) 作者:網(wǎng)管聯(lián)盟 我要評論(0)
今天之所以介紹這兩個命令,是因為在backtrack4中,我安裝在virtualbox上,每次啟動都要對網(wǎng)絡(luò)進行配置(我實在是找不到網(wǎng)絡(luò)的配置文件,/etc/interface下配置也沒起作用,如果你看了這篇文章,并知道那個配置文件在那,請在下面留言告知,小弟不勝感激),廢話不多說,開始今天的主角。
手動設(shè)置ip地址命令:#ifconfig eth0 192.168.1.101 netmask 255.255.255.0 broadcast 255.255.255.255
eth0標(biāo)示第一塊網(wǎng)卡,192.168.1.101 網(wǎng)卡ip地址 netmask 子網(wǎng)掩碼 broadcast 廣播地址
上面那條命令以設(shè)置好網(wǎng)卡的ip地址了 接下來要配置默認(rèn)網(wǎng)關(guān)(與pc物理連線最近的路由器地址)了
# route add default gw 192.168.1.100
add 表示添加路由 default 表示默認(rèn) gw 表示網(wǎng)關(guān) 192.168.1.100 表示與我pc接的那個路由器ip地址
測試一下
#ifconfig eth0 192.168.1.101 netmask 255.255.255.0 broadcast 255.255.255.255
# route add default gw 192.168.1.100
root@sniffer-desktop:/home/sniffer# ping baidu.com
PING baidu.com (220.181.6.184) 56(84) bytes of data.
64 bytes from 220.181.6.184: icmp_seq=1 ttl=55 time=51.5 ms
^C64 bytes from 220.181.6.184: icmp_seq=2 ttl=55 time=51.4 ms
網(wǎng)絡(luò)通了
接下了介紹一下ifconfig 和route命令參數(shù)
root@sniffer-desktop:~# ifconfig eth0 down? down參數(shù) 關(guān)閉接口 對應(yīng)的命令up 啟動接口
root@sniffer-desktop:~# ping baidu.com
ping: unknown host baidu.com
root@sniffer-desktop:~# ifconfig eth0 up
root@sniffer-desktop:~# ping baidu.com
PING baidu.com (220.181.6.184) 56(84) bytes of data.
^Z
[1]+? Stopped???? ping baidu.com
-a 參數(shù) 查看所有接口的信息
root@sniffer-desktop:~# ifconfig -a
eth0????? Link encap:以太網(wǎng)? 硬件地址 00:1f:e2:56:34:a2
inet 地址:192.168.1.101? 廣播:192.168.1.255? 掩碼:255.255.255.0
inet6 地址: fe80::21f:e2ff:fe56:34a2/64 Scope:Link
UP BROADCAST RUNNING NOARP MULTICAST? MTU:1500? 躍點數(shù):1
接收數(shù)據(jù)包:102705 錯誤:0 丟棄:0 過載:0 幀數(shù):0
發(fā)送數(shù)據(jù)包:66278 錯誤:0 丟棄:0 過載:0 載波:0
碰撞:29 發(fā)送隊列長度:1000
接收字節(jié):117308368 (117.3 MB)? 發(fā)送字節(jié):6248995 (6.2 MB)
中斷:19 基本地址:0xdead
lo? Link encap:本地環(huán)回?? //環(huán)回接口loopback
inet 地址:127.0.0.1? 掩碼:255.0.0.0
inet6 地址: ::1/128 Scope:Host
UP LOOPBACK RUNNING? MTU:16436? 躍點數(shù):1
接收數(shù)據(jù)包:306 錯誤:0 丟棄:0 過載:0 幀數(shù):0
發(fā)送數(shù)據(jù)包:306 錯誤:0 丟棄:0 過載:0 載波:0
碰撞:0 發(fā)送隊列長度:0
接收字節(jié):22980 (22.9 KB)? 發(fā)送字節(jié):22980 (22.9 KB)
-arp 參數(shù) 在接口上啟動arp協(xié)議
root@sniffer-desktop:~# ifconfig eth0 -arp
其他參數(shù)可以查看man手冊
route 命令可以查看man手冊的幫助信息有很好的例子:
EXAMPLES
route add -net 127.0.0.0 netmask 255.0.0.0 dev lo //添加一條從接口lo(環(huán)回口)通往127.0.0.0 這個網(wǎng)段
adds the normal loopback? entry,? using? netmask? 255.0.0.0? and
associated with the "lo" device (assuming this device was previ‐
ously set up correctly with ifconfig(8)).
route add -net 192.56.76.0 netmask 255.255.255.0 dev eth0//添加一條從eth0接口通往192.56.76.0這個網(wǎng)段
adds a route to the local network 192.56.76.x via? "eth0".?? The
word "dev" can be omitted here.
route del default? //刪除默認(rèn)路由
deletes the current default route, which is labeled "default" or
0.0.0.0 in the destination field of the current routing table.
route add default gw mango-gw //添加默認(rèn)路由
adds a default route (which will? be? used? if? no? other? route
matches).?? All? packets? using? this? route? will? be gatewayed
through "mango-gw". The device which will actually be? used? for
that? route? depends on how we can reach "mango-gw" - the static
route to "mango-gw" will have to be set up before.
有了這條命令(route)事實上pc可以當(dāng)個簡單的路由器來使用,只是它沒有跑路由協(xié)議而已。
dos有對應(yīng)的命令
linux???? dos
ifconfig<------>ipconfig
route <------->route
linux下命令的參數(shù)更加豐富些
關(guān)鍵詞標(biāo)簽:linux命令,ifconfig,r
相關(guān)閱讀
熱門文章 安裝紅帽子RedHat Linux9.0操作系統(tǒng)教程 Tomcat9.0如何安裝_Tomcat9.0環(huán)境變量配置方法 多種操作系統(tǒng)NTP客戶端配置 Linux操作系統(tǒng)修改IP
人氣排行 Linux下獲取CPUID、硬盤序列號與MAC地址 dmidecode命令查看內(nèi)存型號 linux tc實現(xiàn)ip流量限制 安裝紅帽子RedHat Linux9.0操作系統(tǒng)教程 linux下解壓rar文件 lcx.exe、nc.exe、sc.exe入侵中的使用方法 Ubuntu linux 關(guān)機、重啟、注銷 命令 查看linux服務(wù)器硬盤IO讀寫負(fù)載