To disable the logging synchronous command, perform these steps:
To see if the logging synchronous command is enabled on the console line, issue the show run command. Look under the line con 0, which is toward the end of the show run command output, as shown:
Disable berlaku di real device baik switch / router, karna real device synchronous aktif by default
Router#show run
!
line con 0
logging synchronous
line aux 0
line vty 0 4
login
!
end
If the logging synchronous command is enabled and you want to disable it, issue these commands:
Cara disable nya
Router#config t
Enter configuration commands, one per line. End with CNTL/Z.
Router(config)#line con 0
Router(config-line)#no logging synchronous (menonaktifkan logging synchronous)
Router(config-line)#exit
Router#write mem
=============================
Enable berlaku di packet tracer, karna synchronous di packet tracer non aktif by default
Peng-aktifan synchronous ini bertujuan agar kita dapat merasakan sensasi real device
jika ada device baru terhubung pada terminal otomatis menampilkan log up/down koneksi
Router#config t
Enter configuration commands, one per line. End with CNTL/Z.
Router(config)#line con 0
Router(config-line)#logging synchronous (meng-aktifkan logging synchronous)
Router(config-line)#exit
Router#write mem