vBulletin Search Engine Optimization
| |||||||
| Register | FAQ | Members List | Calendar | Search | Today's Posts | Mark Forums Read |
| ||||
| hello all, i play with zones on T2000 S10 8/07. I create a new zone, and copy a sysidcfg in ../etc before booting it. Here is my sysidcfg: system_locale=C timezone=MET timeserver=localhost network_interface=PRIMARY {netmask=255.255.255.0 default_route=192.168.4.1 protocol_ipv6=no} name_service=DNS {domain_name=moi.fr name_server=192.168.4.3} root_password=xxxxxxxx security_policy=NONE terminal=vt100 nfs4_domain=dynamic but i'm prompted to confirm the hostname, to give the dns, before it can continue to boot. I'm using the same sysidcfg to jumpstart real machines without this problem. How can i find why it prompts me for hostname/dns? thanks in advance, gerard |
| |||
| jdh13 <jdh13@free.fr> wrote: > hello all, > i play with zones on T2000 S10 8/07. I create a new zone, and copy a > sysidcfg in ../etc before booting it. > Here is my sysidcfg: > system_locale=C > timezone=MET > timeserver=localhost > network_interface=PRIMARY {netmask=255.255.255.0 > default_route=192.168.4.1 > protocol_ipv6=no} > name_service=DNS {domain_name=moi.fr name_server=192.168.4.3} > root_password=xxxxxxxx > security_policy=NONE > terminal=vt100 > nfs4_domain=dynamic > > but i'm prompted to confirm the hostname, to give the dns, before it can > continue to boot. > I'm using the same sysidcfg to jumpstart real machines without this problem. > How can i find why it prompts me for hostname/dns? Unless the zone has been configured with ip-type=exclusive the interface configuration will be done by the global zone. So the network_interface line should just look like: network_interface=NONE { hostname=HOSTNAME } BTW TZ=MET is an old anachronism. Better use "CET". This is the official abbreviation for the Central European Timezone. Or you could set "timezone=Europe/Paris" (which will also result in an CET/CEST display) -- Daniel |
| ||||
| Daniel Rock wrote: > Unless the zone has been configured with ip-type=exclusive the interface > configuration will be done by the global zone. So the network_interface line > should just look like: > > network_interface=NONE { hostname=HOSTNAME } > > BTW > > TZ=MET is an old anachronism. Better use "CET". This is the official > abbreviation for the Central European Timezone. > > Or you could set "timezone=Europe/Paris" (which will also result in an > CET/CEST display) > > very thanks for your reply, it works well. The only remark i have is about how it manages the name of the host, because sendmail complains about not fqdn. webmail2 console login: Apr 26 09:57:41 webmail2 sendmail[11748]: My unqualified host name (localhost) unknown; sleeping for retry Why solaris isn't able to fill in /etc/hosts with hostname+domainname, when DNS is the name service chosen? instead, i got this entries in /etc/hosts: # cat /etc/hosts # # Internet host table # 127.0.0.1 localhost loghost webmailcmi2 ::1 localhost loghost webmailcmi2 why solaris isn't able to write as in jumpstart case: ::1 localhost 127.0.0.1 localhost 147.94.64.20 wedmail2 webmail2.moi.fr loghost thanks gerard |