Windows和Virtualbox端口號(hào)映射失敗怎么辦?
在Virtualbox虛擬機(jī)中運(yùn)行Ubuntu系統(tǒng)時(shí),有時(shí)候需要通過(guò)端口映射來(lái)實(shí)現(xiàn)主機(jī)pc端和虛擬機(jī)內(nèi)部鏡像通信,端口和虛擬機(jī)內(nèi)部的服務(wù)相對(duì)應(yīng)。在Virtualbox啟動(dòng)階段會(huì)映射這些端口,然而在Windows中部分機(jī)器卻出現(xiàn)端口映射失敗的情況,那么,Windows和Virtualbox端口號(hào)映射失敗該怎么辦呢?
端口映射失敗日志如下:
00:00:01.125577 NAT: set redirect UDP host 0.0.0.0:6000 =》 guest 10.0.2.15:6000
00:00:01.125748 NAT: can‘t create datagram socket
00:00:01.125763 NAT: failed to redirect UDP 0.0.0.0:6000 =》 10.0.2.15:6000
00:00:01.125774 NAT: set redirect TCP host 0.0.0.0:6555 =》 guest 10.0.2.15:5555
00:00:01.125897 NAT: failed to redirect TCP 0.0.0.0:6555 =》 10.0.2.15:5555
分析:
1.此處的端口號(hào)映射沒(méi)有占用Windows官方分配的端口號(hào),所有不存在端口號(hào)被Windows服務(wù)占用導(dǎo)致無(wú)效映射的問(wèn)題
2.通過(guò)netstat -ano查看所有正在使用端口,未發(fā)現(xiàn)映射的端口號(hào)被占用
3.上述兩點(diǎn)都排除了,那就排查Windows系統(tǒng)本身環(huán)境的問(wèn)題,通過(guò)驗(yàn)證發(fā)現(xiàn),可以通過(guò)修復(fù)工具修復(fù)此問(wèn)題。即是由于Windows本身環(huán)境導(dǎo)致的。
具體修復(fù):Repair Winsock & DNS Cache
功能說(shuō)明如下:
This will clear the stored DNS cache in Windows. When the DNS becomes corrupt you will not be able to get to some sites. Flushing and rebuilding the DNS will fix that problem.
Also resets winsock entries & resets TCP/IP stack.
These extra commands are run on Windows vista and newer.
執(zhí)行完如下幾條命令然后重啟,即可修復(fù)端口號(hào)映射失敗問(wèn)題,此述不僅僅限于Virtualbox要使用的端口映射,其他任何軟件使用到端口映射且失敗時(shí)可以考慮用如下幾條命令修復(fù):
netsh winsock reset all
netsh int 6to4 reset all
netsh int ipv4 reset all
netsh int ipv6 reset all
netsh int httpstunnel reset all
netsh int isatap reset all
netsh int portproxy reset all
netsh int tcp reset all
netsh int teredo reset all
如上這些命令來(lái)源于Windows修復(fù)工具中其中一項(xiàng)
如果有其他Windows問(wèn)題可以嘗試用此工具鏡像修復(fù)。
相關(guān)文章:
1. Win7搜索功能無(wú)法使用怎么辦?Win7搜索功能無(wú)法使用的解決方法2. Win8應(yīng)用商店連不上網(wǎng)怎么辦?Win8應(yīng)用商店連不上網(wǎng)的解決方法3. UOS系統(tǒng)怎么滾動(dòng)截圖? UOS滾動(dòng)截圖的使用方法4. CentOS上的安全防護(hù)軟件Selinux詳解5. Win11系統(tǒng)隱藏?zé)o線網(wǎng)絡(luò)之后不能連接的解決方法6. CentOS7上如何安裝Kafka?CentOS7上安裝Kafka教程7. Debian11中thunar文件管理器在哪? Debian11打開(kāi)thunar文件管理器的技巧8. AIX上克隆rootvg的操作方法 9. Win10電腦連接耳麥有電流噪聲解決方法10. CentOS7.0怎么設(shè)置屏幕分辨率?
