Difference between revisions of "Minicom"
From Notes_Wiki
m |
m |
||
Line 25: | Line 25: | ||
#Connect com cable to console port of switch and power on the device | #Connect com cable to console port of switch and power on the device | ||
#Optionally use 'Ctrl-A Z W' to enable line wrap | #Optionally use 'Ctrl-A Z W' to enable line wrap | ||
Steps learned partially from http://rblondon.blogspot.in/2007/09/configuring-minicom-on-ubuntu-to.html |
Revision as of 05:14, 28 February 2013
<yambe:breadcrumb>System_administration_tools|System Administration Tools</yambe:breadcrumb>
minicom
One can use minicom to connect to switches using serial port or using USB to serial converters. To connect to a Cisco switch or Juniper switch using USB-to-serial converter and minicom use:
- Start a root terminal and run "tail -f /var/log/messages" command
- Connect USB-to-serial converter to laptop/PC and note the name of USB device
- Feb 28 10:29:56 localhost kernel: [ 3335.083209] usb 3-1: new full speed USB device number 6 using xhci_hcd
- Feb 28 10:29:56 localhost kernel: [ 3335.094949] usb 3-1: New USB device found, idVendor=067b, idProduct=2303
- Feb 28 10:29:56 localhost kernel: [ 3335.094958] usb 3-1: New USB device strings: Mfr=1, Product=2, SerialNumber=0
- Feb 28 10:29:56 localhost kernel: [ 3335.094962] usb 3-1: Product: USB-Serial Controller
- Feb 28 10:29:56 localhost kernel: [ 3335.094966] usb 3-1: Manufacturer: Prolific Technology Inc.
- Feb 28 10:29:56 localhost kernel: [ 3335.095150] usb 3-1: configuration #1 chosen from 1 choice
- Feb 28 10:29:56 localhost kernel: [ 3335.095482] pl2303 3-1:1.0: pl2303 converter detected
- Feb 28 10:29:56 localhost kernel: [ 3335.096504] usb 3-1: pl2303 converter now attached to ttyUSB0
- In this case name is ttyUSB0
- Run 'minicom -S' command and set following values:
- Go to modem and dialing menu and set init string to blank
- Go to serial port setup and disable hardware flow control
- Set Bps to 9600 8N1
- Set Serial Device to correct value (eg /dev/ttyUSB0)
- Then save setup as default
- Choose 'Exit' to start minicom with chosen settings
- Connect com cable to console port of switch and power on the device
- Optionally use 'Ctrl-A Z W' to enable line wrap
Steps learned partially from http://rblondon.blogspot.in/2007/09/configuring-minicom-on-ubuntu-to.html