Groups | Search | Server Info | Login | Register


Groups > comp.os.minix > #2574

Re: Minix2 Network config?

From Peter 'Shaggy' Haywood <phaywood@alphalink.com.au>
Newsgroups comp.os.minix
Subject Re: Minix2 Network config?
Date 2025-10-12 10:44 +1100
Organization A noiseless patient Spider
Message-ID <qo6rrl-im1.ln1@otis.foo> (permalink)
References <slrn10da8kn.3oq.wilhelm.greiner@erwo.net> <ab0iql-9m1.ln1@otis.foo> <slrn10dtkhi.9n.wilhelm.greiner@erwo.net>

Show all headers | View raw


  Sorry for taking so long to get back to you! I've been busy with other
things.

Groovy hepcat Wilhelm Greiner was jivin' in comp.os.minix on Fri, 3 Oct
2025 05:27 am. It's a cool scene! Dig it.

> Find it how to set it statically, but for documentation
> reasons i reinstalled the system and now i have a problem,

  You didn't need to reinstall the whole system, just install the man
pages.

> it panic()s at boot with:
> panic at mnx_eth.c, 44

  First of all, I should point out that I'm not a minix expert by any
means.
  I don't know why you're getting this problem. I've never seen this
before. Perhaps a reinstallation error.
  If there's anyone lurking here who's more knowlegable and has some
insight into Wilhelm's problem, please chime in.

> Below are all Files, dont know how to repair that.
> Also a new install ends in the same situation.
> 
> Have also tried to recompile "inet" - but binary is
> completely the same, no changes.
> 
> Thanks for all Idead, Wilhelm
> 
> /etc/inet.conf:
> eth0 WDETH 0 { default; };
> 
> /etc/rc.net (same without it (dhcp)):
> ifconfig -h 192.168.0.19 -n 255.255.255.0 -m 1400
> add_route -g 192.168.0.1 -m 25

  The add_route command doesn't have a -m option. I tried this
configuration on my system to see what would happen, and add_route
fails with an error message (but not the one you're getting), and
pr_routes yields no routes.
  The man page says:

*********************************************************************
ADD_ROUTE(8)              Minix Programmer's Manual              
ADD_ROUTE(8)


NAME
     add_route - configure IP routing.

SYNOPSIS
     add_route -g gateway [-d destination [-n netmask ]] [-i ip device]

DESCRIPTION
     Add_route is used for manual entry of routes in the IP routing
table.

OPTIONS

     -g   gateway specifies the gateway IP address to use.

     -d   destination specifies the destination(s) reached via this
gateway.

     -n   netmask specifies a netmask when the destination is a net.

     -i   ip device specifies the ip device.

SEE ALSO
     irdp(8), pr_routes(8).

AUTHOR
     Add_route.c was created August 7, 1991 by  Philip  Homburg.  This 
manual
     page by A. S. Woodhull, last revised 13.02.96.
*********************************************************************

  You can specify a destination in CIDR notation with the -d option, or
in separate destination and netmask format with the -d and -n options,
although it will default to 0.0.0.0/0 if not specified. 

add_route -g 192.168.0.19 -d 0.0.0.0/0

> daemonize nonamed
> #daemonize talkd
> daemonize tcpd shell in.rshd
> daemonize tcpd login in.rlogind
> daemonize tcpd telnet in.telnetd
> #daemonize tcpd ftp in.ftpd

  Do you have a /etc/hosts file? If you have a DNS server on your
network, put an entry for it in this file:

192.168.1.1 %nameserver

Otherwise just put in an entry for each node on the network:

192.168.1.1 foo.local
192.168.1.2 bar.local
192.168.1.3 baz.local

> Boot Vars - "T" is the one to try net:
> 
> Boot parameters editor.
> c0d0p1s0>set
> rootdev = c0d0p1s0
> ramimagedev = c0d0p1s0
> ramsize = 512
> processor = (?)
> bus = (?)
> video = (?)
> chrome = (?)
> memory = (?)
> c0 = (?)
> image = (minix)
> leader() echo \cMinix boot monitor \v\n\nPress ESC to enter the
> monitor main() menu
> trailer() echo \c
> d(d,Dos) {boot c0d0p0}
> m(m,Minix) {boot}
> T(T,Minix Test) {net_on;boot}
> net_on() {servers=inet;DPETH=300:10;image=/minix/minix}
> rescue() {image=/minix/2.0.4}
> R(R,Rescue Minix) {rescue;boot}

  I'm not sure whether this makes any difference, but you seem to have
three different kernel image specifications; the default (image =
(minix)), the one specified in net_on (image=/minix/minix) and the one
specified in rescue (image=/minix/2.0.4). If pressing m at the boot
menu works you might remove the image specification for net_on and use
the default image. Otherwise you might change it to image=/minix/2.0.4,
if pressing T works.
  Here's what I have:

rootdev = c0d0p0s0
ramimagedev = c0d0p0s0
ramsize = (0)
processor = (286)
bus = (at)
video = (vga)
chrome = (color)
memory = (800:92290,100000:300000)
c0 = (at)
image = (minix)
leader() echo \cMinix boot monitor \v\n\nPress ESC to enter the monitor
main() menu
main {trap 5000 boot:c0d0p1}
trailer() echo \c
dos(d,MS-DOS 6.20) boot c0d0p1
minix(m,minix 2.0.4) boot
DPETH0 = 300:5
servers = inet

-- 


----- Dig the NEW and IMPROVED news sig!! -----


-------------- Shaggy was here! ---------------
              Ain't I'm a dawg!!

Back to comp.os.minix | Previous | NextPrevious in thread | Next in thread | Find similar


Thread

Minix2 Network config? Wilhelm Greiner <wilhelm.greiner@web.de> - 2025-09-25 13:08 +0200
  Re: Minix2 Network config? Peter 'Shaggy' Haywood <phaywood@alphalink.com.au> - 2025-09-26 18:43 +1000
    Re: Minix2 Network config? Wilhelm Greiner <wilhelm.greiner@web.de> - 2025-10-02 21:27 +0200
      Re: Minix2 Network config? Wilhelm Greiner <wilhelm.greiner@web.de> - 2025-10-02 21:47 +0200
      Re: Minix2 Network config? Peter 'Shaggy' Haywood <phaywood@alphalink.com.au> - 2025-10-12 10:44 +1100
        Re: Minix2 Network config? Wilhelm Greiner <wilhelm.greiner@web.de> - 2025-10-14 11:34 +0200
          Re: Minix2 Network config? Peter 'Shaggy' Haywood <phaywood@alphalink.com.au> - 2025-10-24 19:05 +1100
    Re: Minix2 Network config? Wilhelm Greiner <wilhelm.greiner@web.de> - 2025-10-07 10:45 +0200

csiph-web