Linux and UNIX Man Pages

Linux & Unix Commands - Search Man Pages

kissnetd(8) [debian man page]

KISSNETD(8)						   Linux System Managers Manual 					       KISSNETD(8)

NAME
kissnetd - Create a virtual network. SYNOPSIS
kissnetd [-f size] [-v] [-p <num> | tty... ] DESCRIPTION
Kissnetd allows the creation of a virtual network of AX.25 systems that use the KISS protocol. Each tty named on the command line is opened and any KISS frames received on tty is copied to the other ttys. This allows a number of AX.25 systems to share the same packets. OPTIONS
-p num Automaticaly allocate num Unix98 slave pty's via /dev/ptmx. These are written to stdout and could be parsed by your startup scripts. "kissnetd -p 3" is an comfortable alternative to "kissnetd /dev/ptmx /dev/ptmx /dev/ptmx". -f size This sets the maximum KISS frame size that the program will handle. The default is 512 bytes which will be adequate under most circumstances. -v Enables verbose mode, tracing of data passed is sent to standard output. SEE ALSO
kissattach(8), kissparms(8), mkiss(8). AUTHOR
Frederic Rible F1OAT <frible@teaser.fr> Linux 13 October 1996 KISSNETD(8)

Check Out this Related Man Page

NET2KISS(8)															       NET2KISS(8)

NAME
net2kiss - convert a network AX.25 driver to a KISS stream on a pseudo-tty SYNOPSIS
net2kiss [-sfzva] [-i ifname] ptyname DESCRIPTION
net2kiss takes AX.25 packets from an AX.25 kernel network interface and converts them into a KISS data stream via a pseudo-tty. PARAMETERS
ptyname specifies the path to the pseudo-tty. If you use the special name "/dev/ptmx", then a Unix98-PTY pair is used; the pty name is writ- ten to stdout. OPTIONS
-i ifname specifies the name of the kernel AX.25 network interface. The default is bc0. -s tells net2kiss to search by itself for a free pseudoterminal, open the master side and create a symlink named by -p to the slave side. -f can be used in conjunction with -s to force the creation of the symlink even if the target file does already exist. *DANGEROUS* -v Verbose output. Displays error messages during operation and decoded packets to stdout. -z put the network interface into promiscious mode. -a receive every packet instead of only AX.25 from the kernel AX.25 network interface. BUGS
None known. SEE ALSO
ifconfig(8), kissattach(8). AUTHORS
Thomas M. Sailer, HB9JNX/AE4WA, <t.sailer@alumni.ethz.ch> 15 October 1996 NET2KISS(8)
Man Page

3 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

This might be a programming teaser!

Hi gurus, I have done my best to be as precisely as possible with this. Besides giving the format of file a and file b and the result file I have also given the algorithm as I have figured out. I will try to do this and I hope that some of you could help me to solve this or better yet... (1 Reply)
Discussion started by: ljankok
1 Replies

2. Solaris

/dev/ptmx issue session_pty_req: session 0 alloc failed

I've got a Solaris 10 server that got a corrupted root filesystem. After being forced to run fsck against it, the OS is now up and the filesystem read/writable. However, ssh from any account other than root fails with the following error: PTY allocation request failed on channel 0 On the... (0 Replies)
Discussion started by: michaeltravisuk
0 Replies

3. Shell Programming and Scripting

Simply question about capturing output to /dev/tty

Suppose another person wrote the following one-line shell script: echo $RANDOM > /dev/tty QUESTION #1: How can the random number, which is output to the terminal by this script, be captured in a variable? QUESTION #2: How can this be done in a cron job? Specific code, whether in ksh or... (1 Reply)
Discussion started by: Paul R
1 Replies