APLawrence - Information and Resources for Unix and Linux Systems, Bloggers and the self-employed
RSS Feeds Get APLawrence.com by RSS











(OLDER) <- More Stuff -> (NEWER) (NEWEST)
Home > News Posts > preventing use of specific tty ports
Printer Friendly Version




News Group Posts

preventing use of specific tty

ports



From: Bela Lubkin <belal@sco.com>
Subject: Re: busying out a pseudo tty
Date: 2 Oct 2003 17:31:04 -0400
References: <c5a0626d.0310021152.1e7ec391@posting.google.com> 

PW Herman wrote:

> Hi, I've got a weird problem with an old un-supported dentist program
> that runs on Openserver 5.0.4.  For some reason, it gives error
> messages in certain menus if the user logs in on ttyp2, ttyp3, ttyp4
> or ttyp5.  Is there any way to make these 4 pseudo ttys appear to be
> busy so nobody ever connects on them???














If you open the master sides (/dev/ptyp2 etc.), they will be busied out.
You can do that with a very simple shell script that you could e.g. run
as an rc script.  For example,

  #!/bin/sh

  # Busy out ports ttyp2, 3, 4, 5 because "un-supported dentist program"
  # is allergic to them...

  sleep 1000000000 < /dev/ptyp2 &
  sleep 1000000000 < /dev/ptyp3 &
  sleep 1000000000 < /dev/ptyp4 &
  sleep 1000000000 < /dev/ptyp5 &

Save as /etc/rc2.d/S99pty-hold or something like that.

You can save a few processes if you wish (but this gets messy if you
want to busy out dozens of ports):



  cd /dev
  sleep 1000000000 2<ptyp2 3<ptyp3 4<ptyp4 5<ptyp5 &
  # Note that shell syntax allows redirecting fd's 0-9, no higher: 10<
  # does not work.

>Bela<


If this page was useful to you, please click to help others find it:  

Your +1's can help friends, contacts, and others on the web find the best stuff when they search.

Comments?



Click here to add your comments



Don't miss responses! Subscribe to Comments by RSS or by Email

Click here to add your comments


If you want a picture to show with your comment, go get a Gravatar



Auto FTP Manager

Have you tried Searching this site?

Unix/Linux/Mac OS X support by phone, email or on-site: Support Rates

This is a Unix/Linux resource website. It contains technical articles about Unix, Linux and general computing related subjects, opinion, news, help files, how-to's, tutorials and more. We appreciate comments and article submissions.

Publishing your articles here

Jump to Comments



Many of the products and books I review are things I purchased for my own use. Some were given to me specifically for the purpose of reviewing them. I resell or can earn commissions from the sale of some of these items. Links within these pages may be affiliate links that pay me for referring you to them. That's mostly insignificant amounts of money; whenever it is not I have made my relationship plain. I also may own stock in companies mentioned here. If you have any question, please do feel free to contact me.

Specific links that take you to pages that allow you to purchase the item I reviewed are very likely to pay me a commission. Many of the books I review were given to me by the publishers specifically for the purpose of writing a review. These gifts and referral fees do not affect my opinions; I often give bad reviews anyway.

We use Google third-party advertising companies to serve ads when you visit our website. These companies may use information (not including your name, address, email address, or telephone number) about your visits to this and other websites in order to provide advertisements about goods and services of interest to you. If you would like more information about this practice and to know your choices about not having this information used by these companies, click here.

g_face.jpg

This post tagged:

       - Bela
       - SCO_OSR5




Unix/Linux Consultants

Skills Tests

Guest Post Here