Current issue : #
24 |
Release date :
25/02/1989 |
Editor :
Taran King
Title : Advanced Bitnet Procedures
==Phrack Inc.==
Volume Two, Issue 24, File 7 of 13
()()()()()()()()()()()()()()()()()()()()()()()()
() ()
() Advanced Bitnet Procedures ()
() ()
() by ()
() ()
() VAXBusters International ()
() ()
()()()()()()()()()()()()()()()()()()()()()()()()
Greetings! I have taken the time to write up a file about some of the more
complex operations on Bitnet. I hope you enjoy it! :-)
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
You can send multiple messages to one user@node under VAX/VMS & JNET by just
typing;
$ SEND/REMOTE <host> <user>
This will collect messages from the terminal until an empty line or CTRL-Z is
entered.
Under Unix, the UREP package is popular to connect Unix boxes to Bitnet. The
important user commands are as follows:
Messages
~~~~~~~~
netwrite user@host
Send one or more messages to the specified Bitnet user. Netwrite reads
messages from it's standard input until an EOF is reached. If called from a
terminal, netwrite will terminate on an empty line as well.
When you receive Bitnet messages on a Unix host, UREP looks for an executable
file named .exwrite in your home directory. If it doesn't find such a file,
the message is simply spit on your terminal. If .exwrite is present, UREP
executes this program (which can be a shell script) with five parameters:
<To System> <To User> <From System> <From User> <Tty>
The <Tty> parameter tells the terminal to which UREP wanted to send the
message. UREP then feeds the messages to .exwrite as standard input. The
format of standard input is as follows:
<count (1 byte)><message (<count> bytes)>
To display these messages you need to have a "C" program, since a shell script
is not capable of handling single bytes painlessly. I included my exwrite.c at
the end of this file for a start.
Typically, .exwrite is used to log all incoming Bitnet messages. You can of
course blow it up to send messages back to the sender when you're out to lunch,
etc. BTW, .exwrite is called with the user ID of the receiving user, so it's no
real security hole.
File Transfer
~~~~~~~~~~~~~
netcopy user@host [ options ]
Copy a file to the specified Bitnet user. The most important option is
"name=<fname>.<ftype>", with which you can specify the file name to be used
at the recipient's machine. More details are in the manual page.
When you receive Bitnet files on a Unix machine running UREP, they will
be placed in your home directory under the name ":<fname>.<ftype>". These
files are in NETDATA format, and they have to be converted to ASCII text files
when you want to use them under Unix. This can be done with the command;
netdata [ <input_file> [ <output_file> ] ]
When <input_file> is unspecified, standard input is used. If <output_file> is
unspecified, standard output is used.
Bitnet Commands
~~~~~~~~~~~~~~~
Though Bitnet has no remote login capability, you can execute a (restricted)
set of commands on remote hosts. These commands can be used to query node
status, lists of logged-on users, time and some other things.
This works as follows:
JNET: $ SEND/COMMAND <host> [ <command> ]
UREP: % netexec <host> [ <command> ]
CMS: SMSG <server> CMD <host> <command>
The <server> under CMS is the Bitnet control process. In Europe, it is
normally called "EARN." In the USA, it could be "BITNET" or maybe "RSCS."
You're on your own here.
The <host> is the Bitnet host name which you want to execute the <command>.
With JNET and UREP, you will be asked for multiple commands when you leave the
<command> field empty. Again, input is terminated with EOF or an empty line.
I have found the following commands useful in daily life:
CPQ N Get a list of the users currently logged in at the
<host>. This command is supposed to exist on every
Bitnet host, but some system managers like to restrict
it for security reasons. On JNET and UREP hosts,
FINGER performs a similar, but more elaborate function.
CPQ T Make <host> tell you the current time at it's location.
Q <otherhost> Make <host> tell you what the next hop to <otherhost>
is. This is useful when you're interested in the
network topology.
Q <ohost> A This makes <host> tell you what file is currently
active (being transmitted) for <ohost>. This only
works for machines which are directly connected to
<host>.
Q <ohost> Q This makes <host> show you the queue of files currently
waiting for transmission to <ohost>. This is useful
when you want to trace some file which you sent to the
network.
Q SYS This makes <host> tell you about the RSCS links it has.
Unfortunately, MVS-Hosts don't understand any of these commands, but simply
give an error message. You can recognize these things by the string "HASP"
somewhere in the error message.
Enjoy !
exwrite.c For Unix Hosts Running UREP
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
<-- cut here -->
/* exwrite.c - formatter for UREP rscs messages */
include <stdio.h>
include <sysexits.h>
include <pwd.h>
include <ctype.h>
main(argc, argv)
int argc;
char *argv[];
struct passwd *pw;
char fname[255];
FILE *term;
FILE *log;
int count;
char buf[1024];
char *from_user;
char *from_host;
char *to_user;
char *to_host;
char *to_tty;
char *home_dir = "/tmp";
if (argc != 6)
fprintf(stderr, "%s: Invalid arguments\n", argv[0]);
exit(EX_USAGE);
/* initialise variables */
to_host = argv[1];
to_user = argv[2];
from_host = argv[3];
from_user = argv[4];
to_tty = argv[5];
/* convert the receiving user to lowercase. Under Unix, all *
* user names normally are lower case, and we need a valid *
* user name to determine the home directory */
for (; *to_user; to_user++)
*to_user = tolower(*to_user);
to_user = argv[2];
/* get the home directory of the receiving user */
if (pw = getpwnam(to_user))
home_dir = pw->pw_dir;
/* open the terminal, exit if the open fails */
sprintf(fname, "/dev/%s", to_tty);
if (!(term = fopen(fname, "w")))
exit(EX_OSERR);
/* open the rscs log file */
sprintf(fname, "%s/.rscslog", home_dir);
log = fopen(fname, "a");
/* if the message is not coming from the relay, write the *
* sending user and host name to the specified terminal */
if (strcmp(from_user, "RELAY"))
fprintf(term, "From %s@%s:\r\n", from_user, from_host);
/* read in the RSCS messages and send them to the terminal *
* and to the logfile if it has been opened. *
* In the log file, all lines are preceded by the sending user *
* and host name. */
while ((count = getchar()) != EOF)
if ((count = fread(buf, 1, count, stdin)) > 0)
fwrite(buf, 1, count, term);
fprintf(term, "\r\n");
if (log)
fprintf(log, "%s@%s: ", from_user, from_host);
fwrite(buf, 1, count, log);
fprintf(log, "\n");
exit(EX_OK);
_______________________________________________________________________________
<A href="http://www.fake-oakleys-sale.weebly.com/">Fake Oakley sunglasses<A>
<A href="http://www.fakeoakleys-sunglasses.weebly.com/">fake oakley sunglasses</A>
<A href="http://www.cheapguccibelts-fake.weebly.com/">cheap gucci belts</A>
<A href="http://www.cheapguccibelts-fake.weebly.com/">Fake gucci belts</A>
http://www.fake-oakleys-sale.weebly.com
http://www.fakeoakleys-sunglasses.weebly.com
http://www.cheapguccibelts-fake.weebly.com
[url=http://www.fake-oakleys-sale.weebly.com/]Fake Oakley sunglasses[/url]
[url=http://www.fakeoakleys-sunglasses.weebly.com/]Fake Oakley sunglasses[/url]
[url=http://www.cheapguccibelts-fake.weebly.com/]cheap gucci belts[/url]
[url=http://www.cheapguccibelts-fake.weebly.com/]fake gucci belts[/url]
Juicy couture exclusive sponsorship of CCTV prime time variety show "honest variety" host Zhu Xun on the mirror, clothing,the interpretation Juicy couture dress elegant and intellectual beauty. Moderator Zhu Xun the dressed Juicy couture clothing in each program, elegant and generous image of the audience in a relaxed sensual entertainment to enhance the visual cognition of brands and products.
read more:
http://www.juicycoutureoutlet-online.weebly.com
http://www.juicycoutureoutletcheap.com/
http://www.juicycouturebagsstore.com/
Wow… you also can see the website http://www.jerseystribes.com
<a href="http://www.wholesalepandoracharmssale.com"><b>Pandora Charms</b></a> the mind. This kid fights evil with good with the help of his grandfather and cousin, and they always come out on top.
Overall, the rapid pace at which the dispensaries are growing in California can be described as a fervor. It a purely personal decision that you must make. Emerald eco-friendly jade bracelet is in fact neat as well as beautiful jointly with white, there are countless feminist demeanor; low-key simpleness involving magic bangle gentle essential by producing utilization of afraid.
Many a times, sites do not need to have unlimited disk space or bandwidth. Just a day after the 3D re-release of Titanic was narrowed down to an April 2012 date, 20th Century Fox has officially confirmed the date they have in mind for the re-release of James Cameron's most recent blockbuster Avatar.
Sony does not sell a separate base speaker for this TV. What is going on now, is that it is WAAAAAY too easy to get the file so we think we are leaking revenue. Zombies, robots, and one-handed bears with guns, what else could you want? Oh yeah, awesome motorcycles.
You can buy more from other vendor, but you must ensure safe and proper restraint in the cuff. Phoenix is a great city to visit for anyone that is searching for a great shopping, nightlife, arts and a culture scene. If not, they may possibly give the other people an impression of being womanly.
They might give you the most important variety. However, as a non-professional members of the public Quedui Yiwu Pandora beads cut, clarity, level of such fundamental resolution is unclear, although each has a certificate ofbeads hearts of the ladies is a status symbol, is the quality of the display.
Please remember that vintage watches have survived for many decades by being treated Romance God created the brand since 1988, the company, registered in 102 countries around the world omega seamaster ladies watches,jewelry brand,merchandise exports to 70 countries, is a specialized manufacturer of watches and jewelry. Romance of God in 1998 to become a global brand,hire famous Swiss designer Wolfgang Jonsson program development of brand identity company logos,uniform color. Romance God omega seamaster quartz watches Korea Co., Ltd. has become the leading companies in the industry, the reputation is well known South Korean brand abroad. God watches Co.Ltd. has always been committed to technological innovation and excellence in quality romantic and fashion capture,fashion jewelry has become a world dedicated to business goals and tireless efforts.
<a href="http://www.wholesalepandoracharms.com/pandora-chains-c-8.html"><b>Pandora Chains</b></a> Customers can easily place their orders and can get huge benefits in terms of discounts. Each of the four charms is studded with tiny Swarovski crystals, one of them being set with a large Swarovski stone. I understand it difficult to tell people about unique fantasies, and your comfort is first and foremost.
This later became a patent of Pandora Company. And each customer truly has his pick of spending time with any of them. There are also Pandora style beads that were inspired by the Beatle's song "All you need is Love". Pandora charms can be found in <a href="http://www.wholesalepandoracharms.com/pandora-bracelets-c-3.html"><b>Pandora Bracelets</b></a> an incredibly quantity of types which attribute Pandora charms that will be constant sterling silver, sturdy gold or probably a blend in your two that can program a two toned looks.
It is a luck if you have an opportunity to travel all over the world and also have access to eat world-class food. They integrate programs to view documents in word, excel, power point, and pdf file formats. It was contemptibly square yet somehow (and to some eyes) adorable.
It doesn matter if you getting sliced; diced, minced or laser-beamed, carnage is assured. If you are looking for "theme" jewellery, Pandora charms is all set to provide you with wonderful beads. Try to work out whatever you can with the father out of court and you can also find out if he shows any interest in his daughter <a href="http://www.wholesalepandoracharms.com/pandora-silver-beads-charms-c-6.html"><b>Pandora Silver Beads Charms</b></a> so that you can prepare your daughter for a healthy relationship with her dad in the future.
Mixing and matching the lovely jewelry is just as fun as it is effortless. The charms normally ar threaded so nicely to your central wire there i no opportunity from your bracelet obtaining fastened into your apparel. The bracelet layout studio offers large variety of Pandora charm beads, be it glass one or any other for that matter.
The clasp of Pandora bracelets is fairly tricky to open, offered that it aims to secure the bracelet on your wrist with out compromising the aesthetic execute using the talked about Pandora jewelry. Storing passwords in a reversible format is bad, because if your database is compromised, then the attackers have obtained passwords that might (and probably have been) used elsewhere.
An abundance of connectivity options. Buy your diamond with real experience and with your own view. This is not the only basis however upon which the choice of Employee of the Year is made. This precious stone is a symbol of true love, romantic emotions and genuine passions.
"Spirits seem to be up this year. Radio DVD players are also more dependable than most portable DVD/TV players since you can't always receive a good DTV <a href="http://www.wholesalepandoracharms.com/wholesale-pandora-charms-c-19.html"><b>Wholesale Pandora Charms</b></a> signal which usually results in scare channel availability. Mochizuki artwork is clean and attractive, with expressive characters and detailed costumes.
The past few years,there’ve a <a href="http://www.cheapchristianlouboutinsaleuk.net/">cheap christian louboutin</a> lot of people want to buy this footwear on their own or because the gift for their families and buddies.Provide <a href="http://www.cheapchristianlouboutinsaleuk.net/">christian louboutin sale</a> you with sexy and <a href="http://www.cheapchristianlouboutinsaleuk.net/">christian louboutin sale uk</a> magnificence,you can put on Outlet Christian Louboutin Purchase 2012 footwear.cj05-31
<font size="3"><b>coach</b></font> 1/n American fashion brand COACH with its leather bag is <b><a href="http://www.oakleysunglassesoutletcom.com/">oakley sunglasses outlet</a><b> known, the quarter is found in colorful paintings of <b><a href="http://www.oakleysunglassesoutletcom.com/">cheap oakley sunglasses</a><b> famous London artist James Nares partner to launch a <b><a href="http://www.coachwalletsonsales.com/ ">coach crossbody bag outlet</a><b> limited edition handbag,5 of his painting brush painting <b><a href="http://www.coachwalletsonsales.com/ ">coach wallets on sale</a><b> works as a series of luxury handbags symbolic element. This <b><a href="http://www.coachwalletsonsales.com/ ">authentic coach outlet online</a><b> handbag from Italy double layer made of canvas, black, blue <b><a href="http://www.coachwalletsonsales.com/ ">coach outlet coupon</a><b> , green, pink and orange in five colors, each color in the global <b><a href="http://www.coachwalletsonsales.com/ ">the lexi satchel coach factory</a><b> production only100, each handbag are marked with numbers and with <b><a href="http://www.oakleysunglassesoutletcom.com/">oakley frogskin sunglasses</a><b> James Signature Leather cards. Coach X James Nares handbags in May <b><a href="http://www.coachwalletsonsales.com/ ">coach wallets</a><b> of this year will be in the Coach store and Coach official website <b><a href="http://www.coachwalletsonsales.com/ ">coach diaper bag outlet</a><b> official release, each of which sold for $798( about 5000 yuan). <b><a href="http://www.coachwalletsonsales.com/ ">coach outlet</a><b> <b><a href="http://www.oakleysunglassesoutletcom.com/">oakley sunglases sale</a><b> <b><a href="http://www.coachwalletsonsales.com/ ">coach outlet online</a><b>
SHBJHGGHCKHDFHDKHDIRHIEIFIDFDFH
good
<a href="http://www.google.com/">google</a> [url=http://www.google.com/]google[/url]
How to prolong <a href="http://www.laptopsbatterysupplier.com/dell-laptop-battery-inspiron-1525-c-3_1022.html">inspiron 1525 battery</a>inspiron 1525 battery</a>'s life?Well,the <a href="http://www.laptopsbatterysupplier.com/hp-compaq-laptop-battery-pavilion-dv6000-series-c-7_954.html">dv6000 battery</a> is lithium-ion battery.It works on ion movement between the positive and negative electrodes.The easiest way to give your <a href="http://www.laptopsbatterysupplier.com/ibm-laptop-battery-thinkpad-t61-series-c-28_1344.html">t61 battery</a> an early death is to damage it.And the two most common causes of damage <a href=“http://www.laptopsbatterysupplier.com/dell-laptop-battery-inspiron-6400-c-3_1044.html”>inspiron 6400 battery</a> are from overheating and using an AC adapter with the wrong voltage.Use a cooling pad when using <a href=“http://www.laptopsbatterysupplier.com/hp-compaq-laptop-battery-g60-c-7_2959.html”>hp g60 battery</a>.Clean your desk,dust will get into the vents and clog the cooling fan making <a href="http://www.laptopsbatterysupplier.com/4400mah-replacement-laptop-battery-for-hp-pavilion-dv7-p-419.html?cPath=7_942">hp dv7 battery</a> have worse life.Consider taking your <a href=“http://www.laptopsbatterysupplier.com/toshiba-laptop-battery-pa3399u1bas-c-447_1829.html”>pa3399u</a> battery out when using your laptop plugged into AC power.You do not need to discharge <a href=“http://www.laptopsbatterysupplier.com/4400mah-replacement-laptop-battery-for-apple-powerbook-g4-12-inch-p-4172.html?cPath=9_3902">g4 powerbook battery</a> fully and recharge constantly.For a new <a href=“http://www.laptopsbatterysupplier.com/dell-laptop-battery-latitude-d800-c-3_994.html”>dell d800 battery </a>,you're not supposed to store it empty.And <a href=“http://www.laptopsbatterysupplier.com/ibm-laptop-battery-thinkpad-t60-series-c-28_1292.html”>t60 battery</a> left out of the machine will lose charge over time. You're not supposed to leave the <a href=“http://www.laptopsbatterysupplier.com/dell-laptop-battery-latitude-d620-c-3_1053.html”>dell d620 battery</a> in the machine and run on AC all the time. Doing so will kill the life expectancy.You're not supposed to charge cycle the <a href=“http://www.laptopsbatterysupplier.com/dell-laptop-battery-latitude-d630-c-3_1054.html”>dell d630 battery</a> frequently, as the long-term life expectancy is measured in charge cycles.
You're not supposed to deep discharge the <a href="http://www.laptopsbatterysupplier.com/4400mah-replacement-laptop-battery-for-gateway-nv52-p-1904.html?cPath=35_2094">nv52 battery</a>.You're not supposed to use the <a href=“http://www.laptopsbatterysupplier.com/dell-laptop-battery-inspiron-6000-c-3_1024.html”>dell inspiron 6000 battery </a> before it has finished charging.Well,my question is two-fold,Which of these are true?how to maximizing the long-term life of a <a href=“http://www.laptopsbatterysupplier.com/toshiba-laptop-battery-pa3534u1bas-c-447_1843.html”>pa3534u</a> battery.I'm fairly sure that (c) is true, as I have been a lot more careful about charge-cycling than I was with my previous <a href="http://www.laptopsbatterysupplier.com/6600mah-replacement-laptop-battery-for-dell-xps-m1210-p-140.html?cPath=3_1057">m1210 battery</a>.This <a href=“http://www.laptopsbatterysupplier.com/hp-compaq-laptop-battery-pavilion-dv2000-series-c-7_952.html”>dv2000 battery</a> is still at about 90% of the original capacity after a year.
I usually run my laptop with the <a href=“http://www.laptopsbatterysupplier.com/dell-laptop-battery-inspiron-1545-c-3_3177.html”>inspiron 1545 battery</a>.My advice is to avoid using the <a href=“http://www.laptopsbatterysupplier.com/dell-laptop-battery-inspiron-1501-c-3_3102.html”>inspiron 1501 battery</a> for just a few minutes.If you use the <a href=“http://www.laptopsbatterysupplier.com/sony-laptop-battery-vgpbps13-c-32_1951.html”>sony bps13 battery</a>,drain the <a href=“http://www.laptopsbatterysupplier.com/apple-laptop-battery-a1185-c-9_2149.html”>a1185 battery</a>, then recharge once it gets down below 5-7%.Otherwise, keep it on AC power, with or without the <a href=“http://www.laptopsbatterysupplier.com/dell-laptop-battery-inspiron-1520-c-3_1060.html”>inspiron 1520 battery</a> inside. This has worked well for me.If u this this is good advice for extending your <a href=“http://www.laptopsbatterysupplier.com/hp-compaq-laptop-battery-pavilion-dv4-c-7_915.html”>hpdv4 battery</a> life,just do it like I said.Then u can own long life <a href="http://www.laptopsbatteryupplier.com">laptops batteries</a>.
We provides hundreds of cheap jerseys and authentic jerseys.free and fast shipping NBA jerseys,NFL jerseys,MLB jerseys,NHL jerseys.In our store,you can chase after every kind of chase after Football jerseys,college jerseys and basketball jerseys. http://www.goodlucky-jerseys.com