If you’re using the Solaris 11 desktop, you can use the Network Preferences application (which can be found into the System/Administration menu) to quickly build NCPs and Location profiles.
Network Preferences
In the following sections we will use some NWAM administrative commands but we won’t dig into this subject any more and let NWAM administration be the topic of another post.
Configuring the Network
Depending on how a newly Solaris 11 installation has been performed, your initial network configuration may differ. If you’ve installed it from the Live CD, the Automatic NCP and the Automatic Location profile are active. These profiles are pretty simple: they configure every IP interface and the name service using DHCP, leaving any other configuration option (IP filters, IPSec, etc.) disabled.
If you’re using Solaris on your PC this configuration may be good for you but chances are you might be installing some server that requires a less trivial network configuration.
Creating an NCP profile
The first thing you’re going to do is creating a new NCP:
$ netcfg create ncp datacenter
The datacenter NCP will be the container of our configuration and we will add the NCU that we need for every link and IP interface we’re going to configure.
With the netcfg command we created an NCP with the following characteristics:
It has an NCU for a physical interface (net0). This NCU has been configured with default values for all of its properties (such as MAC address or MTU).
It has an NCU for an IP interface (net0). This NCU has been configured with a static IPv4 address and a default router.
If you activate this profile, your system will reconfigure the network according to the settings of this NCP:
# netadm enable -p ncp datacenter
Enabling ncp ‘datacenter’
If we now check the IP interfaces we can see how they’ve been configured according to the above-mentioned NCUs: the net1 IP interface is up while the net0 interface has disappeared.
# ipadm show-if
IFNAME CLASS STATE ACTIVE OVER
lo0 loopback ok yes —
net1 ip ok yes —
If we check the IP addresses currently used, the ipadm command confirms that only net1 has been assigned an address which is the static address we configured in the NCU. Again, net0 has disappeared.
# ipadm show-addr
ADDROBJ TYPE STATE ADDR
lo0/v4 static ok 127.0.0.1/8
net1/_a static ok 192.168.1.53/24
lo0/v6 static ok ::1/128
If we know check the state of the datalinks, we can see that net0 is in the unknown state while net1 is up.
# dladm show-phys
LINK MEDIA STATE SPEED DUPLEX DEVICE
net0 Ethernet unknown 1000 full e1000g0
net1 Ethernet up 1000 full e1000g1
If we wanted to add both the net0 datalink and IP interface into the profile, we could simply modify it and create the corresponding NCUs.
If we now try to resolve some name, however, we discover that it’s not going to work. If you remember, we’re still using the Automatic location profile which configure the name resolver using DHCP. In this case, however, DHCP isn’t being used so that the resolver is not going to resolve any name.
What we need now, is a corresponding location profile.
Creating a Location Profile
To configure the resolver settings, we can now create a new location profile, using once more the netcfg command:
netcfg> create loc datacenter
Created loc ‘datacenter’. Walking properties …
activation-mode (manual) [manual|conditional-any|conditional-all]>
nameservices (dns) [dns|files|nis|ldap]>
nameservices-config-file (« /etc/nsswitch.dns »)>
dns-nameservice-configsrc (dhcp) [manual|dhcp]> manual
dns-nameservice-domain>
dns-nameservice-servers> 192.168.1.1
dns-nameservice-search> yourdomain.com
dns-nameservice-sortlist>
dns-nameservice-options>
nfsv4-domain>
ipfilter-config-file>
ipfilter-v6-config-file>
ipnat-config-file>
ippool-config-file>
ike-config-file>
ipsecpolicy-config-file>
netcfg:loc:datacenter>
netcfg:loc:datacenter> end
Committed changes
netcfg> end
As soon as we enable the newly created location profile, the resolver is going to use the configured settings and it’s just going to work:
$ netadm enable -p loc datacenter
Enabling loc ‘datacenter’
$ nslookup www.oracle.com
Server: 192.168.1.1
Address: 192.168.1.1#53
Non-authoritative answer:
www.oracle.com canonical name = www.oracle.com.edgekey.net.
www.oracle.com.edgekey.net canonical name = e4606.b.akamaiedge.net.
Name: e4606.b.akamaiedge.net
Address: 2.20.190.174
Conclusion
As you can see, configuring the basic network settings in a Solaris 11 system is clean and easy. The new administrative interface lets you easily define, store and activate on-demand multiple network configuration for your system without the need of writing and maintaing multiple copies of the old style Solaris network configuration files.
Dans le cadre d’un sauvetage de machine Sun j’ai du réinstaller un OS de zéro sur un nouveau disque puis repluggué les anciens disques afin de récupérer les données ! J’installe donc, je configure le Lire la suite…
Se logguer en root Création du fichier de configuration defaultdomain : # domainname quadratec # domainname > /etc/defaultdomain Ajout du serveur nis dans le fichier hosts : # vi /etc/hosts 172.16.16.1 nisserver.fr.peltier.network Mise en place Lire la suite…
0 commentaire