Cat you help please) I have connected switch to PC with serial cable and i want to manage it. What utility i can use to open serial line and manage switch through console? On windows i used Putty(Serial line COM1).

link|improve this question

79% accept rate
feedback

5 Answers

up vote 4 down vote accepted

minicom. look here for some tutorial.

link|improve this answer
feedback

GNU Screen will do this as well. You just provide the argument of whatever device you are using, for example:

screen /dev/ttyUSB0
screen /dev/ttyS0

Like any other file, you will need read write privileges for the /dev/tty* devices. See the 'Window Types' section of man screen to see how to specify the baud rate etc, but screen can usually figure this out.

link|improve this answer
screen is the hassle free way – toppledwagon Sep 3 '11 at 2:40
feedback

We use kermit with a simple config/script file that sets the options.

link|improve this answer
feedback

I prefer picocom personally.

Minicom has too much ncurses bloat for my liking. It always takes me ages to get where I want.

Whereas with picocom you specify all of your options (baud/parity/stop) on the command line, no fuss.

link|improve this answer
You can easily set a minirc.dfl file in /etc/, a ~/.minirc.dfl or whatever, or you can have a script and call it via -s, so it can be automated to a degree. – Kurt Jun 11 '09 at 7:46
I know, it's just far more complicated than it needs to be though. Especially when I find myself changing parity between different hosts. – Dan Carley Jun 11 '09 at 11:31
feedback

I use minicom. Relatively straightforward, and works like a charm.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.