場景:早上網速慢,想用遠端的方式登入思科的路由器發現一直登入不了。後面檢視原來是23埠被別人占用了。
具體解決方法如下:
1.檢視具體使用者
arp-wuke#show user
line user host(s) idle location
* 0 con 0 idle 00:00:00
67 tty 1 59.173.13.146
2.發現無法
clear line vty [no] 刪除
高階方法如下:
arp-wuke#show tcp brief ###找出你要剔出的使用者
tcb local address foreign address (state)
8188eaa4 210.77.83.28.23 116.25.56.207.5218 closed
82275efc 210.77.83.28.23 14.33.31.14.41864 closewait
81d4f548 210.77.83.28.23 222.186.34.56.56970 closed
815f2dc4 210.77.83.28.23 113.52.192.75.46597 closewait
81d257fc 210.77.83.28.23 116.25.56.207.57603 closewait
81d8453c 210.77.83.28.23 59.173.13.146.2213 estab
815f275c 210.77.83.28.23 117.212.161.83.51667 closewait
81593dd8 210.77.83.28.23 222.186.34.56.40471 closed
81d5205c 210.77.83.28.23 198.13.104.180.50500 closed
815dbc48 210.77.83.28.23 213.248.183.132.44804 closewait
81d20934 210.77.83.28.23 82.185.78.130.56260 closewait
815b0c1c 210.77.83.28.23 113.52.192.75.53265 closewait
81d87254 210.77.83.28.23 108.203.94.175.41735 closewait
81d20dd8 210.77.83.28.23 222.186.34.56.64060 closed
81dc12a8 210.77.83.28.23 85.105.88.72.46511 closewait
815a5f88 210.77.83.28.23 201.235.16.171.4116 closewait
81d83e78 210.77.83.28.23 187.85.158.34.51989 closewait
81d59e60 210.77.83.28.23 212.253.91.29.36590 closewait
81625764 210.77.83.28.23 187.85.158.34.47292 closewait
81c85df4 210.77.83.28.23 91.155.48.43.32988 closewait
arp-wuke#clear tcp tcb 81d8453c
[confirm]
[ok]
arp-wuke#show user
line user host(s) idle location
* 0 con 0 idle 00:00:00
inte***ce user mode idle peer address
解決adb埠被占用的問題
在使用電腦連線手機時需要用到adb工具。但是有時會提示adb無法連線或連線失敗的情況,這種多半是因為adb埠被占用所造成的。解決adb埠被占用主要有以下幾個步驟 1 cmd命令視窗輸入 adb nodaemon server 然後就會提示你哪個埠被占用了,預設埠為5037 2 輸入netstat a...
解決tomcat 的埠被占用問題
很多時候執行tomcat 的時候總是會提示tomcat 的埠被占用 但是任務管理器裡面還找不到是哪個埠被占用了 因此很多人就重新配置tomcat 或者去修改tomcat的埠號 其實這麼做太麻煩了 小弟在這裡告訴你乙個非常簡單的方法。2.在dos視窗中輸入netstat ano findstr 808...
如何解決adb devices 埠被占用的問題
在win xp win 7 上使用adb時,越來越多的人出現了 adb devices 命令長時間無響應 adb start server 失敗 eclipse adt初始化時卡在dbms init上等現象。它們的根本原因均在於,adb server所使用的5037號埠被占用。一種常見的解決方法是 ...