Skip to content
Snippets Groups Projects
nfsCommands 1017 B
Newer Older
mooney's avatar
mooney committed
# Set the default gateway (the address to which IP datagrams will be sent
# when there is no specific specific routing table entry available for the
# actual destination address.)
routeAdd "0","164.54.52.1"

# Something like this is needed for proc 0 if "inet on backplane" is defined
# Here, 164.54.53.226 is the backplane address, and it's actually not the
# gateway for everything in the world.
mooney's avatar
mooney committed
routeDelete "164.54.0.0", "164.54.53.226"

routeShow

# The following lines are examples of what might be required to use NFS,
# rather than FTP, for booting the VME crate, and generally for reading
# and writing files on the server.
mooney's avatar
mooney committed
hostAdd("beams","164.54.100.5")
nfsMount("beams","/export/homeb","/home/beams")
mooney's avatar
mooney committed
hostAdd("oxygen","164.54.52.4")
nfsMount("oxygen","/home/oxygen","/home/oxygen")
nfsMount("oxygen","/home/oxygen4","/home/oxygen4")
hostAdd("wheaties","164.54.53.101")
nfsMount("wheaties","/local","/local")

# The following line eliminates "cksum: out of data" messages due to DHCP
#proxyPortFwdOff(67)