- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- How to set the Baud rate for the serial ports on H...
Categories
Company
Local Language
Forums
Discussions
Forums
- Data Protection and Retention
- Entry Storage Systems
- Legacy
- Midrange and Enterprise Storage
- Storage Networking
- HPE Nimble Storage
Discussions
Discussions
Discussions
Discussions
Forums
Forums
Discussions
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
- BladeSystem Infrastructure and Application Solutions
- Appliance Servers
- Alpha Servers
- BackOffice Products
- Internet Products
- HPE 9000 and HPE e3000 Servers
- Networking
- Netservers
- Secure OS Software for Linux
- Server Management (Insight Manager 7)
- Windows Server 2003
- Operating System - Tru64 Unix
- ProLiant Deployment and Provisioning
- Linux-Based Community / Regional
- Microsoft System Center Integration
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Community
Resources
Forums
Blogs
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО10-04-2002 12:58 PM
тАО10-04-2002 12:58 PM
How to set the Baud rate for the serial ports on HP unix Visualize B180L
nohup sleep 99999 >/dev/tty1p0 &
stty 115200 also tried
stty ospeed 115200 but when I run
stty it shows the speed as 300 Baud.
I aslo checked to make sure that there is no getty process for this device.
Thanks in advance
-Najam
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО10-04-2002 01:13 PM
тАО10-04-2002 01:13 PM
Re: How to set the Baud rate for the serial ports on HP unix Visualize B180L
Is this a remote console port? If so, is it enabled in SPU? Does it support 115200? Is the device currently attached to it?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО10-04-2002 08:13 PM
тАО10-04-2002 08:13 PM
Re: How to set the Baud rate for the serial ports on HP unix Visualize B180L
thanks,
Najam
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО10-05-2002 09:23 AM
тАО10-05-2002 09:23 AM
Re: How to set the Baud rate for the serial ports on HP unix Visualize B180L
If you have a breakout box, put it on the line and check what pins it's holding high, if any. If it's not holding DTR high, use the breakout box to force it high, and try your stty again.
If you don't have a breakout box, get one - they're virtually required to do any serial communications.
There's lots of info on the web about serial communications... here's one:
http://www.taltech.com/TALtech_web/resources/intro-sc.html
that looks like it has a lot of good information.
Good luck!
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО10-06-2002 12:58 PM
тАО10-06-2002 12:58 PM
Re: How to set the Baud rate for the serial ports on HP unix Visualize B180L
the "stty(1)" command uses the input channel to decide which tty to configure. And after the last process closes this channel it will be reset automatically to the default values as determined by the programmers of the device driver. Then UN*X usually only permits baud rates from 300 to 38400 baud, and the two highest speeds only with the special words "exta" and "extb". Hence try:
sleep 99999 < /dev/tty1p0 &
stty extb < /dev/tty1p0
stty -a < /dev/tty1p0
For faster speeds you'll need to do some C programming, using the system-call "ioctl" on that device...
HTH,
Wodisch