-
Mon Nov 12 2012 Zhigang Wang <zhigang.x.wang@oracle.com> - 3.0-71
- set hostname on dhcp
With boot parameter, ifup will try to get hostname from DNS servers and set it.
Signed-off-by: Zhigang Wang <zhigang.x.wang@oracle.com> [bug 15853856]
-
Fri Oct 19 2012 Zhigang Wang <zhigang.x.wang@oracle.com> - 3.0-70
- network: fix hosts entry limitation
Currently, to specify /etc/hosts entries, you have to specify 3 fields: IP,
Domain_Name, Alias.
Actually Alias is optional. I made this mistake while implementing this. Now the
attached patch fixes it.
Signed-off-by: Zhigang Wang <zhigang.x.wang@oracle.com>
Signed-off-by: Adnan Misherfi <adnan.misherfi@oracle.com>
-
Thu Sep 06 2012 Zhigang Wang <zhigang.x.wang@oracle.com> - 3.0-69
- check password strength and clear console input
Signed-off-by: Zhigang Wang <zhigang.x.wang@oracle.com>
Signed-off-by: Adnan Misherfi <adnan.misherfi@oracle.com>
Signed-off-by: Tianyue Lan <tianyue.lan@oracle.com>
Cc: Wim Coekaerts <wim.coekaerts@oracle.com>
Cc: Kurt Hackel <kurt.hackel@oracle.com> [bug 14572009]
-
Wed Jun 06 2012 Zhigang Wang <zhigang.x.wang@oracle.com> - 3.0-68
- support unicode password
Signed-off-by: Zhigang Wang <zhigang.x.wang@oracle.com> [bug 13989234]
-
Thu May 31 2012 Zhigang Wang <zhigang.x.wang@oracle.com> - 3.0-67
- make console input screen cleaner by add hidden option to parameters
Signed-off-by: Zhigang Wang <zhigang.x.wang@oracle.com>
Signed-off-by: Tianyue Lan <tianyue.lan@oracle.com>
Cc: Wim Coekaerts <wim.coekaerts@oracle.com>
-
Fri Apr 27 2012 Zhigang Wang <zhigang.x.wang@oracle.com> - 3.0-66
- disable ctrl-d support for console input screen and don't allow empty string for password. [bug 13998385]
-
Wed Apr 18 2012 Zhigang Wang <zhigang.x.wang@oracle.com> - 3.0-65
- Don't print backtrace on error. Just print the error message.
Signed-off-by: Zhigang Wang <zhigang.x.wang@oracle.com>
Signed-off-by: Tianyue Lan <tianyue.lan@oracle.com>
-
Wed Apr 18 2012 Zhigang Wang <zhigang.x.wang@oracle.com> - 3.0-64
- make user password no echo on input
Signed-off-by: Zhigang Wang <zhigang.x.wang@oracle.com>
Signed-off-by: Tianyue Lan <tianyue.lan@oracle.com>
-
Thu Apr 12 2012 Zhigang Wang <zhigang.x.wang@oracle.com> - 3.0-63
- removes pexpect dependency and and uses passwd --stdin to change user
password.
Signed-off-by: Zhigang Wang <zhigang.x.wang@oracle.com>
Signed-off-by: Tianyue Lan <tianyue.lan@oracle.com>
-
Thu Apr 12 2012 Zhigang Wang <zhigang.x.wang@oracle.com> - 3.0-62
- network cleanup: remove persistent udev rules.
Some background:
* OL5 uses HWADDR in ifcfg-ethN to reorder NIC names. It is done by udev rule in
/etc/udev/rules.d/60-net.rules:
ACTION=="add", SUBSYSTEM=="net", IMPORT{program}="/lib/udev/rename_device"
* OL6 changed "/lib/udev/rename_device" implement: it will not actually rename a
device; instead it will only print the target name, then other udev rules will
write persistent udev rules based on this name. For OL6 on baremetal, when a new
NIC is detected, udev will write a rule in
/etc/udev/rules.d/70-persistent-net.rules, e.g.:
SUBSYSTEM=="net", ACTION=="add", DRIVERS=="?*", ATTR{address}=="00:21:f6:00:00:dc", ATTR{type}=="1", KERNEL=="eth*", NAME="eth0"
It is written by /lib/udev/rules.d/75-persistent-net-generator.rules. But xen
vif is an exception: it will not write persistent udev rules for xen vif. It is
controlled by this line in /lib/udev/rules.d/75-persistent-net-generator.rules:
SUBSYSTEMS=="xen", GOTO="persistent_net_generator_end"
My proposal for ovm-template-config network script on OL6:
* Apply attached patch: cleanup /etc/udev/rules.d/70-persistent-net.rules before
ship Template.
* If users want change NIC names, just reorder them in vm.cfg: vif = ['mac=XXX',
'mac=YYY'], then in guest, the nic will be always called eth0, eth1, ...
* We don't write udev persistent net rules for xen netfront.
Signed-off-by: Zhigang Wang <zhigang.x.wang@oracle.com>
Signed-off-by: Tianyue Lan <tianyue.lan@oracle.com> [bug 13929093]