2nd controller on a 405EP

I’m running 6.2.1B, with a IBM PowerPC 405EP.

The 405EP is like a 405GP, but it has 2 ethernet controller.
To use ethernet controller, in the BSP startup boot script, i use the
following command :

io-net -dppc405 mac=0050C21EAFFE -ptcpip &
waitfor /dev:socket
ifconfig en0 192.1.1.1 netmask 0xffffff00

So, the first ethernet controller is working.
Any ideas how to configure and use the second ethernet controller ?

Thanks

Laurent

laurent pineau wrote:

I’m running 6.2.1B, with a IBM PowerPC 405EP.

The 405EP is like a 405GP, but it has 2 ethernet controller.
To use ethernet controller, in the BSP startup boot script, i use the
following command :

io-net -dppc405 mac=0050C21EAFFE -ptcpip &
waitfor /dev:socket
ifconfig en0 192.1.1.1 netmask 0xffffff00

So, the first ethernet controller is working.
Any ideas how to configure and use the second ethernet controller ?

run io-net with 2 devices
io-net -dppc405 mac=0050C21EAFFE -dppc405 mac=xxxxxxxxxxxx -ptcpip &

and configure …
ifconfig en0 192.1.1.1 netmask 0xffffff00
ifconfig en1 192.1.1.2 netmask 0xffffff00


Thanks

Laurent