Tag: solaris

  1. Changing the IP address of a Solaris 10 machine.

    01 March 2007


    1. Edit /etc/hosts, change the IP address corresponding to the system's hostname.

    2. Edit /etc/netmasks, change the network and subnet mask.

    3. If required, edit /etc/defaultrouter and set the new default gateway of the system.

    4. Edit /etc/inet/ipnodes, change the IP address of the system's hostname. This file trumps all of the other TCP/IP config files, so if you miss this file everything else is pointless. Alternatively, you can delete or rename this file, and this will trick the Solaris 10 SMF subsystem into thinking it's an IPv4-only system.

    5. shutdown -i 6 -y -g 5 to reboot the …

    Read more...

  2. Random knowledge X.

    25 January 2007

    How to set up a crossover ethernet connection between two Sun Solaris machines:


    • Connect both machines using a crossover ethernet cable.

    • root@solaris-machine-1# ifconfig plumb

    • root@solaris-machine-1# ifconfig netmask

    • root@solaris-machine-1# ifconfig up

    • On each machine, ping the other. If both are reported as being alive, you're golden.


    It would look something like this on a live setup:

    root@igg# ifconfig ce1 plumb

    root@ook# ifconfig ce1 plumb

    root@igg# ifconfig ce1 10.0.0.1 netmask 255.255.255.0

    root@ook# ifconfig ce1 10.0.0.2 netmask 255.255.255.0

    root@igg# ifconfig ce1 up

    root …

    Read more...