IRIX 5.3 Network Help?
#11
RE: IRIX 5.3 Network Help?
Alright! I unplugged all the internal parts, compressed aired the insides, and plugged everything back in. It works again! The Indy lives another day. Back to business, I’m using a fresh install of IRIX 5.3. What else would I need to do to achieve a correct network setup?
Anonymoose
Octane

Trade Count: (0)
Posts: 50
Threads: 5
Joined: May 2025
Location: New York
Find Reply
07-12-2025, 02:02 AM
#12
RE: IRIX 5.3 Network Help?
Have a look at this thread:

https://forums.irixnet.org/thread-3358.html

Project: Temporarily lost at sea
Plan: World domination! Or something...
vishnu
Tezro, Octane2, 2 x Onyx4

Trade Count: (0)
Posts: 1,249
Threads: 42
Joined: Dec 2017
Location: Minneapolis, Minnesota USA
Find Reply
07-12-2025, 02:32 PM
#13
RE: IRIX 5.3 Network Help?
While this was helpful too, I can’t find /etc/config/static-route.options. All I’ve done so far is changed the options in Network Setup to the correct IP (192.168.0.187).
Anonymoose
Octane

Trade Count: (0)
Posts: 50
Threads: 5
Joined: May 2025
Location: New York
Find Reply
07-12-2025, 03:59 PM
#14
RE: IRIX 5.3 Network Help?
Unless you're dead set on manually entering a static IP on the client side.  Please use DHCP like a normal client to make life easier. This will automatically also enter the resolv.conf details as well!

chkconfig network on
chkconfig autoconfig_ipaddress on
chkconfig routed on

Even if you want a static IP you should enter as a DHCP reservation on the DHCP server side.

Also network or not, disable esp service, it's the old remote support system from SGI and it takes an enormous amount of resources for doing nothing anymore turning it off is the first thing you should do on a new system.

chkconfig esp off

Assuming you don't have a cabling or hardware problem things should be working now.  Irix did support IPv6 but I don't have the details of that right now.


(07-12-2025, 03:59 PM)Anonymoose Wrote:  While this was helpful too, I can’t find /etc/config/static-route.options. All I’ve done so far is changed the options in Network Setup to the correct IP (192.168.0.187).
weblacky
I play an SGI Doctor, on daytime TV.

Trade Count: (10)
Posts: 1,716
Threads: 88
Joined: Jan 2019
Location: Seattle, WA
Find Reply
07-12-2025, 04:29 PM
#15
RE: IRIX 5.3 Network Help?
(07-12-2025, 03:59 PM)Anonymoose Wrote:  While this was helpful too, I can’t find /etc/config/static-route.options. All I’ve done so far is changed the options in Network Setup to the correct IP (192.168.0.187).

You can create the file 'touch /etc/config/static-route.options' (leave out the single quotes obviously), 192.168 is one of the non-routeable IP ranges (it can only be used on local area networks), might be simpler to just set it to 192.168.0.1

Project: Temporarily lost at sea
Plan: World domination! Or something...
vishnu
Tezro, Octane2, 2 x Onyx4

Trade Count: (0)
Posts: 1,249
Threads: 42
Joined: Dec 2017
Location: Minneapolis, Minnesota USA
Find Reply
07-12-2025, 04:38 PM
#16
RE: IRIX 5.3 Network Help?
So I’ve done that, chkconfig doesn’t have an esp variable to toggle. I’ve been trying to access ftp servers to test if the networking is working, and it’s still giving me “unknown host”. Is that a correct way to test this? The network setup hasn’t changed.
Anonymoose
Octane

Trade Count: (0)
Posts: 50
Threads: 5
Joined: May 2025
Location: New York
Find Reply
07-12-2025, 04:51 PM
#17
RE: IRIX 5.3 Network Help?
(07-12-2025, 04:51 PM)Anonymoose Wrote:  So I’ve done that, chkconfig doesn’t have an esp variable to toggle. I’ve been trying to access ftp servers to test if the networking is working, and it’s still giving me “unknown host”. Is that a correct way to test this? The network setup hasn’t changed.

Paste in the contents of your /etc/hosts file

Project: Temporarily lost at sea
Plan: World domination! Or something...
vishnu
Tezro, Octane2, 2 x Onyx4

Trade Count: (0)
Posts: 1,249
Threads: 42
Joined: Dec 2017
Location: Minneapolis, Minnesota USA
Find Reply
07-12-2025, 05:57 PM
#18
RE: IRIX 5.3 Network Help?
(07-12-2025, 04:29 PM)weblacky Wrote:  Unless you're dead set on manually entering a static IP on the client side.  Please use DHCP like a normal client to make life easier. This will automatically also enter the resolv.conf details as well!

chkconfig network on
chkconfig autoconfig_ipaddress on
chkconfig routed on

Even if you want a static IP you should enter as a DHCP reservation on the DHCP server side.

Also network or not, disable esp service, it's the old remote support system from SGI and it takes an enormous amount of resources for doing nothing anymore turning it off is the first thing you should do on a new system.

chkconfig esp off

Assuming you don't have a cabling or hardware problem things should be working now.  Irix did support IPv6 but I don't have the details of that right now.

I'm 99% sure that IRIX doesn't have a DHCP client in 5.3. Unless you use 5.3, please don't assume it has certain creature comforts.

IRIX 5.3 doesn't have DHCP, it doesn't have a 64-bit environment and the routing setup is very different.

I'm the system admin of this site. Private security technician, licensed locksmith, hack of a c developer and vintage computer enthusiast. 

https://contrib.irixnet.org/raion/ -- contributions and pieces that I'm working on currently. 

https://codeberg.org/SolusRaion -- Code repos I control

Technical problems should be sent my way.
Raion
Chief IRIX Officer

Trade Count: (9)
Posts: 4,243
Threads: 534
Joined: Nov 2017
Location: Eastern Virginia
Website Find Reply
07-12-2025, 06:05 PM
#19
RE: IRIX 5.3 Network Help?
(07-12-2025, 04:29 PM)weblacky Wrote:  Unless you're dead set on manually entering a static IP on the client side.  Please use DHCP like a normal client to make life easier. This will automatically also enter the resolv.conf details as well!

chkconfig network on
chkconfig autoconfig_ipaddress on
chkconfig routed on

Even if you want a static IP you should enter as a DHCP reservation on the DHCP server side.

Also network or not, disable esp service, it's the old remote support system from SGI and it takes an enormous amount of resources for doing nothing anymore turning it off is the first thing you should do on a new system.

chkconfig esp off

Assuming you don't have a cabling or hardware problem things should be working now.  Irix did support IPv6 but I don't have the details of that right now.

I'm 99% sure that IRIX doesn't have a DHCP client in 5.3. Unless you use 5.3, please don't assume it has certain creature comforts.

IRIX 5.3 doesn't have DHCP, it doesn't have a 64-bit environment and the routing setup is very different.

I'm the system admin of this site. Private security technician, licensed locksmith, hack of a c developer and vintage computer enthusiast. 

https://contrib.irixnet.org/raion/ -- contributions and pieces that I'm working on currently. 

https://codeberg.org/SolusRaion -- Code repos I control

Technical problems should be sent my way.
Raion
Chief IRIX Officer

Trade Count: (9)
Posts: 4,243
Threads: 534
Joined: Nov 2017
Location: Eastern Virginia
Website Find Reply
07-12-2025, 06:05 PM
#20
RE: IRIX 5.3 Network Help?
Ah, was early...didn't catch the 5.3....thought it was normal 6.5...my mistake!

5.3 tips here: https://software.majix.org/irix/network-setup.shtml
(This post was last modified: 07-12-2025, 06:20 PM by weblacky.)
weblacky
I play an SGI Doctor, on daytime TV.

Trade Count: (10)
Posts: 1,716
Threads: 88
Joined: Jan 2019
Location: Seattle, WA
Find Reply
07-12-2025, 06:19 PM


Forum Jump:


Users browsing this thread: 1 Guest(s)