修改超时时长避免用户登录超时被系统断开
Router1#configure terminal
Enter configuration commands, one per line. End with CNTL/Z.
Router1(config)#line vty 0 4
Router1(config-line)#exec-timeout 0 0 (exec-timeout 240 0)
Router1(config-line)#exit
Router1(config)#end
Router1#
注释 缺省用户10 分钟空闲就会被踢掉系统,0 0 可以用不超时,第一个0 是分钟,第二个0 是秒。
同时为了防止有些用户掉死但是还占用vty 端口的情况,建议使用下面命令来防止:
Router1#configure terminal
Enter configuration commands, one per line. End with CNTL/Z.
Router1(config)#service tcp-keepalives-in
Router1(config)#end
Router1#