atmhosts(4) Kernel Interfaces Manual atmhosts(4)NAME
atmhosts - ATM host name file
DESCRIPTION
The atmhosts file is an ASCII file that contains an single-line entry for each host on the ATM network. Each entry consists of an ATM
host address, official host name, and any aliases.
Parameters are separated by spaces or tab characters. A number sign (#) indicates the beginning of a comment; characters up to the end of
the line are not interpreted by routines that search the file.
ATM host addresses are specified by an even number of hexadecimal digits. Each pair of digits represents 8 bits of address information.
An ATM address can be one of the following: An ATM End System Address (AESA) as registered with the network (19 bytes, or 38 hexadecimal
digits) A local Endpoint System Identifier (ESI) that is registered with the local switch (6 bytes, or 12 hexadecimal digits) An AESA with
selector byte, representing the address of a service on a remote machine (20 bytes, or 40 hexadecimal digits).
Note
By default, the atmhosts file contains an entry for Permanent Virtual Circuits (PVCs). The entry consists of an ATM address of 40 hexadeci-
mal zeros (0) and the host name PVC. Do not change or delete this entry.
FILES
ATM hosts file
RELATED INFORMATION
Commands: atmconfig(8), atmarp(8) delim off
atmhosts(4)
Check Out this Related Man Page
ATMADDR(8) Maintenance Commands ATMADDR(8)NAME
atmaddr - list and maintain local ATM addresses
SYNOPSIS
atmaddr [-n] [itf]
atmaddr -r [itf]
atmaddr -a [itf] atm_addr
atmaddr -d [itf] atm_addr
atmaddr -V
DESCRIPTION
atmaddr is used to list the local addresses configured for ATM interfaces and to manually change the list of addresses. If the interface
number itf is omitted, interface 0 is used by default. The ATM address atm_addr can be any valid ATM SVC address, e.g. an E.164 address or
an ATM Forum NSAP address.
If invoked without options, atmaddr lists the addresses that are currently configured on the specified interface.
Note that local ATM addresses are normally automatically maintained by the ILMI demon.
OPTIONS -a append the specified address at the end of the list.
-d delete the specified address from the list.
-n numeric address output only. No address to name translation is attempted.
-r reset (clear) the local address list of the specified interface.
-V print the version number of atmaddr on standard output and exit.
AUTHOR
Werner Almesberger, EPFL ICA <Werner.Almesberger@epfl.ch>
SEE ALSO ilmid(8)Linux April 26, 2000 ATMADDR(8)
We just recently upgraded our T1 wan link to a 10Mbit ATM link.
Windows pc's seem fine and get great speed, however we have 2 Sco unix box's that seem really slow at FTPing now.
both Sco box's are
SCO OpenServer Enterprise System (ver 5.0.5m)
compaq ML530's
I'm not really sure what to... (4 Replies)
Hello,
A file named c15a is registered on my disc all 10 minutes.
I must rename that file with the actually Date and with an automatic increase number on 5 digits, so as : c15a.20070528.00001 and the next file will be : c15a.20070528.00002.
The next day so tomorrow the five digits must be... (6 Replies)
Hi,
I have a script which connect to ATM's and pull two files from the ATM.
The which i try to pull is like
PIC20085200001*.JPG
First 7 digit consist of year montn and date as well
After todays execution i want to change the date to next date
I add few lines in the script but it is not... (6 Replies)
Hi all,
I always getting great response from this forum, that why i am putting again....
I am working in a company which is giving ATM support.In one of my production server a lot of files are getting generated every day. I want to move these files to another name.
The file name which is... (4 Replies)
Hello,
This is my first time here so I hope I can describe everything. Due to the nature of what we're doing, I'm only going to describe what I need.
We need to convert TCP/IP to ATM. I'm not talking about encapsulizing it by wrapping ATM around it, rather pure conversion from IP to ATM.... (0 Replies)
I need to create a simple ATM (Cash machine simulation in unix) which shows a welcome screen, then a login screen to enter 3 users details. help please on the coding
The users details need to be in a txt file: the details are: (PIN No, First name last name, Account number, Balance, Histrosy)
... (1 Reply)
I have a file with hundreds of records and I need to find those records that have three digits at the beginning and the same three digits at the end.
$GREP '\(\)\(\)\(\)\3\2\1'I
believe this is part of the script but I am not sure how to compare these 3 digits with the 3 digits at the end of... (2 Replies)
I would like to search between two a string. I thought this would be easy. The is always at the beginning of a line.
The code:
gawk '/^/{d=$1},/searchstring/,/^(d+1)/'
or
gawk '/^/,/searchstring/,/^/'
did not return the desired result.
inputfile.txt
999 some text searchstring some... (6 Replies)
I'm trying to grep lines where the digits at the end of each line are greater than digits. Tried this but it will only allow me to specify 2 digits. Any ideas would greatly be appreciated. grep -i '\<\{3,4,5\}\>' file
---------- Post updated at 05:58 PM ---------- Previous update was at 05:41... (1 Reply)