Re: [GXemul-users] Networking on DECstation 5000/200 Ultrix 4.5
Status: Alpha
Brought to you by:
gavare
From: Anders G. <ga...@gm...> - 2019-06-01 19:06:32
|
> I am having trouble getting networking to work for Ultrix 4.5 on DECstation 5000/200. The gxemul configuration file has defaults for net section (no special overrides). Inside Ultrix, I am doing the following: > > # ifconfig ln0 10.0.0.1 > # route add default gw 10.0.0.254 > > However, Ultrix cannot ping the host gateway 10.0.0.254. > > What is the usual way to get this working? ifconfig ln0 10.0.0.1 route add default 10.0.0.254 1 This should allow you to e.g. telnet to numeric IPv4 addresses such as Google: telnet 216.58.211.132 80 and then type "GET /" to get the Google home page. There is also some kind of setup script called /etc/netsetup which you can try, I don't know if it makes name resolution work though. http://gunkies.org/wiki/Installing_Ultrix_4.5_on_SIMH may be of some help, although it is a different emulator and a different emulated platform. And the ULTRIX man pages for route and possibly resolv.conf: https://www.unix.com/man-page/ultrix/8c/route/ https://www.unix.com/man-page/ultrix/5/resolv.conf/ Anders |