公司有台服务器,svn更新代码的时候直接卡死。最后发现是两台服务器网卡的全双工/半双工方式不同导致。
root@pts/2 # mii-tool eth0 eth0: negotiated 100baseTx-FD, link ok 另一台: root@pts/0 # mii-tool bond0 bond0: 10 Mbit, half duplex, link ok
修改:
root@pts/2 # ethtool -s eth0 speed 10 duplex half root@pts/2 # mii-tool eth0 eth0: negotiated 10baseT-HD, link ok
命令参考:
http://www.cyberciti.biz/faq/linux-change-the-speed-and-duplex-settings-of-an-ethernet-card/
本文出自 “linux系统维护” 博客,请务必保留此出处http://linuxadmin.blog.51cto.com/2683824/1774327
原文地址:http://linuxadmin.blog.51cto.com/2683824/1774327