鐵之狂傲

 取回密碼
 註冊
搜尋

切換到指定樓層
1#
10鐵幣
1.ARP工具的使用
2.PING工具程式的使用
3.NETSTAT工具程式的使用
4.TRACERT工具程式的使用
5.WINIPCFG工具程式的使用

求教學

最佳解答

蠢蠢 檢視完整內容

1.ARP工具的使用
 
轉播0 分享0 收藏0

回覆 使用道具 檢舉

回覆 #1 ACT 的文章

1.ARP工具的使用 <== 不知道, 沒用過..無法回答
2.PING工具程式的使用
Usage: ping [-t] [-a] [-n count] [-l size] [-f] [-i TTL] [-v TOS]
            [-r count] [-s count] [[-j host-list] | [-k host-list]]
            [-w timeout] target_name

Options:
    -t             Ping the specified host until stopped.
                   To see statistics and continue - type Control-Break;
                   To stop - type Control-C.
    -a             Resolve addresses to hostnames.
    -n count       Number of echo requests to send.
    -l size        Send buffer size.
    -f             Set Don't Fragment flag in packet.
    -i TTL         Time To Live.
    -v TOS         Type Of Service.
    -r count       Record route for count hops.
    -s count       Timestamp for count hops.
    -j host-list   Loose source route along host-list.
    -k host-list   Strict source route along host-list.
    -w timeout     Timeout in milliseconds to wait for each reply.
簡單來說, 就是打 ping 192.168.0.1
就會出現, 你這台電腦連接到這個 IP 的速度, 愈小愈好....QQ

3.NETSTAT工具程式的使用
Displays protocol statistics and current TCP/IP network connections.

NETSTAT [-a] [-b] [-e] [-n] [-o] [-p proto] [-r] [-s] [-v] [interval]

  -a            Displays all connections and listening ports.
  -b            Displays the executable involved in creating each connection or
                listening port. In some cases well-known executables host
                multiple independent components, and in these cases the
                sequence of components involved in creating the connection
                or listening port is displayed. In this case the executable
                name is in [] at the bottom, on top is the component it called,
                and so forth until TCP/IP was reached. Note that this option
                can be time-consuming and will fail unless you have sufficient
                permissions.
  -e            Displays Ethernet statistics. This may be combined with the -s
                option.
  -n            Displays addresses and port numbers in numerical form.
  -o            Displays the owning process ID associated with each connection.
  -p proto      Shows connections for the protocol specified by proto; proto
                may be any of: TCP, UDP, TCPv6, or UDPv6.  If used with the -s
                option to display per-protocol statistics, proto may be any of:
                IP, IPv6, ICMP, ICMPv6, TCP, TCPv6, UDP, or UDPv6.
  -r            Displays the routing table.
  -s            Displays per-protocol statistics.  By default, statistics are
                shown for IP, IPv6, ICMP, ICMPv6, TCP, TCPv6, UDP, and UDPv6;
                the -p option may be used to specify a subset of the default.
  -v            When used in conjunction with -b, will display sequence of
                components involved in creating the connection or listening
                port for all executables.
  interval      Redisplays selected statistics, pausing interval seconds
                between each display.  Press CTRL+C to stop redisplaying
                statistics.  If omitted, netstat will print the current
                configuration information once.
這個是可以 秀出目前電腦有哪些連線, 簡單來說就是看哪些東西在使用網路...

4.TRACERT工具程式的使用
Usage: tracert [-d] [-h maximum_hops] [-j host-list] [-w timeout] target_name

Options:
    -d                 Do not resolve addresses to hostnames.
    -h maximum_hops    Maximum number of hops to search for target.
    -j host-list       Loose source route along host-list.
    -w timeout         Wait timeout milliseconds for each reply.
這個程式跟 ping  使用方式是一樣的, 例: tracert 168.95.1.1
用途為, 可以把您目前電腦到達所指定 IP 位址中途經過哪些交換, 及速度多少例出來...
簡單來說, 是用來查尋是哪個位址斷線或是塞車用...

5.WINIPCFG工具程式的使用
原則上, 這個指令在 XP 已經找不到惹 >"< (我用XP)
在之前的用途是在查尋本機電腦的 IP 位扯, 也可以用來 更新 DHPC 指派的 IP ...

以上資料來源 XP 裡的說明 + 個人使用心得...
 

回覆 使用道具 檢舉

你要不要直接去買本書來看比較快= =...
 

回覆 使用道具 檢舉

回覆 #2 神騎 的文章




你去看書吧..孩子
 

回覆 使用道具 檢舉

回覆 #4 蠢蠢 的文章

挖靠

好強的資訊

不過...
Usage: ping [-t] [-a] [-n count] [-l size] [-f] [-i TTL] [-v TOS]
            [-r count] [-s count] [[-j host-list] | [-k host-list]]
            [-w timeout] target_name

這些東西要輸入哪裡啊?

命令提示字元?

還是啥?
 

回覆 使用道具 檢舉

回覆 #5 magicalloveshe 的文章

這一定要在 命令提示字元 裡才可以使用 ~ 就是說 這些都是 DOS 指令.....

在 Windows 下的執行打 cmd 按確定後..就會出現提示字元..
然後打 ping 168.95.1.1 按 確定, 這樣就會出現以下訊息.....

Pinging 168.95.1.1 with 32 bytes of data:

Reply from 168.95.1.1: bytes=32 time=53ms TTL=247
Reply from 168.95.1.1: bytes=32 time=51ms TTL=247
Reply from 168.95.1.1: bytes=32 time=87ms TTL=247
Reply from 168.95.1.1: bytes=32 time=277ms TTL=247

Ping statistics for 168.95.1.1:
    Packets: Sent = 4, Received = 4, Lost = 0 (0% loss),
Approximate round trip times in milli-seconds:
    Minimum = 51ms, Maximum = 277ms, Average = 117ms

上面的 time 就是連到對方主機的時間, TTL 是存活剩下的數量(別理它)
最後一行是平均值, 應該還瞞好懂的
 

回覆 使用道具 檢舉

回覆 #6 蠢蠢 的文章

你的編號三千多號
文章數16
聲望只有我今天給你六枚
你之前怎麼潛水潛那麼利害阿?
 

回覆 使用道具 檢舉

回覆 #7 magicalloveshe 的文章

最早當初來的時候~ 沒這個討論區啊~ 所以通常都只有在遊戲討論看看貼貼文章~

所以就沒啥文章數+聲望囉~
 

回覆 使用道具 檢舉

你需要登入後才可以回覆 登入 | 註冊

存檔|手機版|聯絡我們|新聞提供|鐵之狂傲

GMT+8, 24-5-25 14:33 , Processed in 0.038291 second(s), 25 queries , Gzip On.

回頂部