search for: ip_gateway

Displaying 20 results from an estimated 23 matches for "ip_gateway".

2009 Jul 13
1
[PATCH node] Adds vlan support to auto-installations for the node. bz#511056
...-early b/scripts/ovirt-early index b4de30e..560fa14 100755 --- a/scripts/ovirt-early +++ b/scripts/ovirt-early @@ -208,10 +208,12 @@ start() { # ipv6=dhcp|auto # dns=server[,server] # ntp=server[,server] + # vlan=id # static network configuration ip_address= ip_gateway= ip_netmask= + vlan= netmask= gateway= ipv6= @@ -344,6 +346,9 @@ start() { hostname=*) hostname=${i#hostname=} ;; + vlan=*) + vlan=${i#vlan=} + ;; syslog=*) i=${i#syslog=}...
2017 Dec 19
0
[PATCH] Implement classless static routes
...t netdev *dev) printf(":\n address: %-16s ", my_inet_ntoa(dev->ip_addr)); printf("broadcast: %-16s ", my_inet_ntoa(dev->ip_broadcast)); printf("netmask: %-16s\n", my_inet_ntoa(dev->ip_netmask)); - printf(" gateway: %-16s ", my_inet_ntoa(dev->ip_gateway)); - printf("dns0 : %-16s ", my_inet_ntoa(dev->ip_nameserver[0])); - printf("dns1 : %-16s\n", my_inet_ntoa(dev->ip_nameserver[1])); + if (dev->routes != NULL) { + struct route *cur; + char *delim = ""; + printf(" routes :"); + for (cur = de...
2018 Jun 12
0
[PATCH v2] Implement classless static routes
...t netdev *dev) printf(":\n address: %-16s ", my_inet_ntoa(dev->ip_addr)); printf("broadcast: %-16s ", my_inet_ntoa(dev->ip_broadcast)); printf("netmask: %-16s\n", my_inet_ntoa(dev->ip_netmask)); - printf(" gateway: %-16s ", my_inet_ntoa(dev->ip_gateway)); - printf("dns0 : %-16s ", my_inet_ntoa(dev->ip_nameserver[0])); - printf("dns1 : %-16s\n", my_inet_ntoa(dev->ip_nameserver[1])); + if (dev->routes != NULL) { + struct route *cur; + char *delim = ""; + printf(" routes :"); + for (cur = de...
2019 Jan 18
0
[klibc:master] ipconfig: Implement classless static routes
...t netdev *dev) printf(":\n address: %-16s ", my_inet_ntoa(dev->ip_addr)); printf("broadcast: %-16s ", my_inet_ntoa(dev->ip_broadcast)); printf("netmask: %-16s\n", my_inet_ntoa(dev->ip_netmask)); - printf(" gateway: %-16s ", my_inet_ntoa(dev->ip_gateway)); - printf("dns0 : %-16s ", my_inet_ntoa(dev->ip_nameserver[0])); - printf("dns1 : %-16s\n", my_inet_ntoa(dev->ip_nameserver[1])); + if (dev->routes != NULL) { + struct route *cur; + char *delim = ""; + printf(" routes :"); + for (cur = de...
2018 Jun 18
1
[PATCH v3 1/2] Implement classless static routes
...t netdev *dev) printf(":\n address: %-16s ", my_inet_ntoa(dev->ip_addr)); printf("broadcast: %-16s ", my_inet_ntoa(dev->ip_broadcast)); printf("netmask: %-16s\n", my_inet_ntoa(dev->ip_netmask)); - printf(" gateway: %-16s ", my_inet_ntoa(dev->ip_gateway)); - printf("dns0 : %-16s ", my_inet_ntoa(dev->ip_nameserver[0])); - printf("dns1 : %-16s\n", my_inet_ntoa(dev->ip_nameserver[1])); + if (dev->routes != NULL) { + struct route *cur; + char *delim = ""; + printf(" routes :"); + for (cur = de...
2009 Jul 21
0
[PATCH node] Adds a new kernel cmdline argument to toggle SSH password auth.
...s/ovirt-early b/scripts/ovirt-early index 560fa14..00d7422 100755 --- a/scripts/ovirt-early +++ b/scripts/ovirt-early @@ -209,6 +209,7 @@ start() { # dns=server[,server] # ntp=server[,server] # vlan=id + # ssh=[0|1] # static network configuration ip_address= ip_gateway= @@ -219,6 +220,7 @@ start() { ipv6= dns= ntp= + ssh= # hostname=fqdn # hostname @@ -349,6 +351,12 @@ start() { vlan=*) vlan=${i#vlan=} ;; + ssh=1 | ssh=true) + ssh=true + ;; + ssh=0 | ssh=false) + ssh=false +...
2004 May 28
1
ipconfig related question (do not get static IP setting)
Hi!! I found your ipconfig stuff in the udev rpm in SuSE 9.1. I'm about to setup a initramfs (pretty cool - much better than initrd) to boot linux diskless clients over the net. All the tools I would need, seem to be there with ipconfig/nfsmount ... I like to use the information I get from PXE/syslinux or Etherboot writing something like:
2009 Jul 22
1
Updated patch...
This patch obsoletes the previous, renaming the karg to ssh_pwauth.
2009 Jul 22
1
Changes the ssh karg to ssh_pwauth
This patch obsoletes the previous one with feedback from pmyers at redhat.com.
2009 Nov 16
3
[PATCH] Add support for vendor hooks during ovirt-early start()
...uot;$bootparams $i" + } esac done + if [ -n "${vendor_script}" ]; then + . ${vendor_script} + vendor_pre_hook + fi + if [ -z "$ip_netmask" ]; then ip_netmask=$netmask fi @@ -379,7 +397,8 @@ start() { ip_gateway=$gateway fi # save boot parameters as defaults for ovirt-config-* - params="bootif init vol_boot_size vol_swap_size vol_root_size vol_config_size vol_logging_size vol_data_size local_boot standalone overcommit ip_address ip_netmask ip_gateway ipv6 dns ntp vlan ssh_pwauth syslog_se...
2011 Apr 15
2
[PATCH] Escape DHCP options written to /tmp/net-$DEVCICE.conf
...printf(f, "IPV4ADDR=%s\n", my_inet_ntoa(dev->ip_addr)); - fprintf(f, "IPV4BROADCAST=%s\n", - my_inet_ntoa(dev->ip_broadcast)); - fprintf(f, "IPV4NETMASK=%s\n", my_inet_ntoa(dev->ip_netmask)); - fprintf(f, "IPV4GATEWAY=%s\n", my_inet_ntoa(dev->ip_gateway)); - fprintf(f, "IPV4DNS0=%s\n", - my_inet_ntoa(dev->ip_nameserver[0])); - fprintf(f, "IPV4DNS1=%s\n", - my_inet_ntoa(dev->ip_nameserver[1])); - fprintf(f, "HOSTNAME=%s\n", dev->hostname); - fprintf(f, "DNSDOMAIN=\"%s\"\n", dev->...
2009 Nov 16
1
Refactored upgrade patch...
This patch includes feedback from apevec to remain backward compatible with the previous karg, ovirt_local_boot.
2009 Nov 13
1
[PATCH] Provides an explicit upgrade path for an installed node.
...ng_size="$5; print "vol_data_size="$6;}') ;; - ovirt_local_boot*) - local_boot=1 + ovirt_upgrade*) + upgrade=1 ;; ovirt_standalone*) standalone=1 @@ -379,7 +379,7 @@ start() { ip_gateway=$gateway fi # save boot parameters as defaults for ovirt-config-* - params="bootif init vol_boot_size vol_swap_size vol_root_size vol_config_size vol_logging_size vol_data_size local_boot standalone overcommit ip_address ip_netmask ip_gateway ipv6 dns ntp vlan ssh_pwauth syslog_se...
2009 Nov 16
2
Resend...
Resending the refactored patch: I realized after I emailed it that it referenced the wrong bugzilla.
2011 Jul 21
0
[PATCH] add netconsole autoinstall parameter
...) { # save boot parameters as defaults for ovirt-config-* - params="bootif init init_app vol_boot_size vol_swap_size vol_root_size vol_config_size vol_logging_size vol_data_size vol_swap2_size vol_data2_size crypt_swap crypt_swap2 upgrade standalone overcommit ip_address ip_netmask ip_gateway ipv6 dns ntp vlan ssh_pwauth syslog_server syslog_port collectd_server collectd_port bootparams hostname firstboot rhn_url rhn_ca_cert rhn_username rhn_password rhn_profile rhn_activationkey rhn_proxy rhn_proxyuser rhn_proxypassword runtime_mode kdump_nfs iscsi_name snmp_password install" +...
2014 Feb 12
61
P2V: Headless support
This introduces support to run P2V without X server. Runtime parameters are specified via kernel command line making it hopefully suitable for automated migration with a little help of PXE boot. Patchset is not squashed and represents dev. history.
2010 Jul 21
0
[PATCH] RFC: Encrypted swap support
...+ crypt_swap2=${default_cypher} + fi + fi + fi + done + ;; *) bootparams="$bootparams $i" ;; @@ -592,7 +624,7 @@ start_ovirt_early () { ip_gateway=$gateway fi # save boot parameters as defaults for ovirt-config-* - params="bootif init initapp vol_boot_size vol_swap_size vol_root_size vol_config_size vol_logging_size vol_data_size vol_swap2_size vol_data2_size upgrade standalone overcommit ip_address ip_netmask ip_gateway ipv...
2009 May 20
2
[PATCH node] Adds support for a core dump partition to the node.
...ot;vol_root_size="$3; print "vol_config_size="$4; print "vol_logging_size="$5; print "vol_coredump_size="$6; print "vol_data_size="$7;}') ;; ovirt_local_boot*) local_boot=1 @@ -361,7 +362,7 @@ start() { ip_gateway=$gateway fi # save boot parameters as defaults for ovirt-config-* - params="bootif init vol_boot_size vol_swap_size vol_root_size vol_config_size vol_logging_size vol_data_size local_boot standalone overcommit ip_address ip_netmask ip_gateway ipv6 dns ntp syslog_server syslog_port...
2009 Oct 01
1
Repost of Patch 6/6 for ovirt-node
All other patches from the sequence remain unchanged. Repost of patch 6 based on comments from Joey to follow. Mike
2010 Jul 21
0
[PATCH] RFC: Advanced Storage Configuration
...;; + esac + ;; + esac + fi + fi + done ;; ovirt_upgrade* |ovirt_local_boot*) upgrade=1 @@ -455,7 +592,7 @@ start_ovirt_early () { ip_gateway=$gateway fi # save boot parameters as defaults for ovirt-config-* - params="bootif init vol_boot_size vol_swap_size vol_root_size vol_config_size vol_logging_size vol_data_size upgrade standalone overcommit ip_address ip_netmask ip_gateway ipv6 dns ntp vlan ssh_pwauth syslog_serve...