📄 nxhosting_with_ppp
字号:
From: gbrown@alumni.caltech.edu (Glenn Brown)Subject: Re: ppp and NXHost problemsDate: 23 Nov 1994 07:37:57 GMTOrganization: California Institute of Technology, PasadenaIf you want to NXHost over PPP, Simply execute the following 7 linesafter the ppp connection has been brought up (these are simply thelines from the rc.net script that signal the nmserver that it shouldcheck for new interfaces. Note that the kill command does not kill thenmserver. Rather, it sends the "USR2" signal to the nmserver.)#!/bin/sh# Let the nmserver know the fruits of our network configuration endeavor.pid=`ps cax | egrep nmserver | awk '{print $1;}'`if [ -n "$pid" ]; then echo "Reinitializing nmserver's network portion" /bin/kill -USR2 $pidfiNote 1: You have to executed the lines under "sh". I suggest yousave them in a file and type "/bin/sh file".Note 2: I haven't actually tried this (I don't have another NeXT totest it on), but I figured out out reading the rc scripts. Please letme know the result if you try it.--Glenn----------------------------------------------------------------------In article <4ule10$g2t@nuke.csu.net>, John Rudd <kzin@arcadia.sjsu.edu> wrote:>(isc-ts2-* are our dialup PPP lines.. each line in the hunt group has a >different IP addy associated with it.. so you are likely to get a different >one each time. And this is why I can't do the "Services -> OpenSesame -> >Open on host X", because that sends "-NXHost copernicus".. which is what my >home machine internally identifies itself as)The only way to get -NXHost to work over PPP is to have an IP addressassigned to your Ethernet port, and have a route to that addressreachable over the PPP.When you try to -NXHost, it uses UDP, and for some reason the UDPprotocol decides to use the Ethernet's IP address for outgoingpackets, rather than using the PPP's IP address.You'll also have similar problems trying to get talk to work overPPP. Unless there is a route to your Ethernet's IP address, it isn'tgoing to work.-- Chris Osborn, Network Administrator Napa Valley College707 253 3130 - Voice 2277 Napa-Vallejo Hwy.707 253 3063 - Fax Napa, CA 94558<fozztexx@nvc.cc.ca.us> <琱ttp://www.nvc.cc.ca.us/~fozztexx>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -