Displaying 9 results from an estimated 9 matches for "guest_ipaddr".
2009 Sep 17
1
[PATCH server] oVirt server single network installer
...File.open('/etc/resolv.conf').each_line{ |line|
otherwise select \"n\" and a dns server will be configured during the install', RED) %>")
dns_servers = prompt_yes_no("Use this systems's dns servers?")
-guest_httpd_ipaddr = interfaces[guest_httpd_dev]
guest_ipaddr = interfaces[guest_dev]
admin_ipaddr = interfaces[admin_dev]
@@ -276,9 +273,9 @@ firewall::setup{'setup':
firewall_rule{"ssh": destination_port => "22"}
#DNS Configuration
-$guest_httpd_ipaddr = '<%= guest_httpd_ipaddr %>'
$guest_ipaddr = '&l...
2009 May 15
1
[PATCH server] add server-side groundwork for remote freeipa server
...password:")
+ldap_dn = ""
+ldap_dn_temp = realm_name.split(".")
+ldap_dn_temp.each do |i|
+ ldap_dn += "dc=#{i},"
+ end
+ ldap_dn = ldap_dn.chop
+
# DNS Configuration
@cli.say( "\nThe following DNS servers were found:")
@@ -190,16 +208,16 @@ guest_ipaddr = interfaces[guest_dev]
admin_ipaddr = interfaces[admin_dev]
if dns_servers == "y"
- guest_ipaddr_lookup = Socket.getaddrinfo(guest_ipaddr.to_s,nil)
- guest_hostname = guest_ipaddr_lookup[1][2]
- if guest_hostname.to_s != ipa_host.to_s
+ admin_ipaddr_lookup = Socket.getadd...
2009 Jul 02
2
How to install ovirt in working environment?
...aller
# at Thu Jul 02 16:32:09 +0400 2009#
import 'ovirt'
import 'firewall'
firewall::setup{'setup':
status => 'enabled'
}
firewall_rule{"ssh": destination_port => "22"}
#DNS Configuration
$guest_httpd_ipaddr = '195.168.1.7'
$guest_ipaddr = '10.1.1.7'
$admin_ipaddr = '10.1.1.7'
$ovirt_host = 'station.example.ru'
$ipa_host = 'station.example.ru'
dns::remote{setup:
guest_ipaddr=> $guest_ipaddr,
admin_ipaddr=> $admin_ipaddr,
guest_dev => 'eth1',
admin_dev => '...
2015 Jun 08
3
Recommended change for the networking page in wiki
...ript to as follows.
(Changes are highlighted. For some reason the original script didn't work
using /bin/sh, but it did with /bin/bash, so I changed that too).
*#!/bin/bash*
# used some from advanced script to have multiple ports: use an equal
number of guest and host ports
Guest_name=xxxxxxx
Guest_ipaddr=xxx.xxx.xxx.xx
*Host_ipaddr=xxx.xxx.xxx.xx*
Host_port=( '80' '443' )
Guest_port=( '80' '443' )
length=$(( ${#Host_port[@]} - 1 ))
if [ "${1}" = "${Guest_name}" ]; then
if [ "${2}" = "stopped" -o "${2}" = "reco...
2009 Apr 22
1
[PATCH server] cleanup cobbler and put all cobbler traffic on the admin network
...bler/modules.conf":
@@ -132,7 +124,7 @@ class cobbler::bundled {
file_replacement{"settings_server":
file => "/etc/cobbler/settings",
pattern => "server: 127.0.0.1",
- replacement => "server: $guest_ipaddr",
+ replacement => "server: $admin_ipaddr",
require => Package[cobbler],
notify => Service[cobblerd]
}
@@ -140,7 +132,7 @@ class cobbler::bundled {
file_replacement{"settings_next_server":...
2015 Jun 08
2
Re: Recommended change for the networking page in wiki
...patibility (that wasn't in the
> original, simpler version of the script, written by me.)
>
>>
>> *#!/bin/bash*
>> # used some from advanced script to have multiple ports: use an equal
>> number of guest and host ports
>>
>> Guest_name=xxxxxxx
>> Guest_ipaddr=xxx.xxx.xxx.xx
>> *Host_ipaddr=xxx.xxx.xxx.xx*
>> Host_port=( '80' '443' )
>> Guest_port=( '80' '443' )
In fact, these two lines are also bashisms. All the more reason to
require bash.
>> length=$(( ${#Host_port[@]} - 1 ))
>> if [ &qu...
2015 Jun 12
0
Re: Recommended change for the networking page in wiki
...original, simpler version of the script, written by me.)
> >
> >>
> >> *#!/bin/bash*
> >> # used some from advanced script to have multiple ports: use an equal
> >> number of guest and host ports
> >>
> >> Guest_name=xxxxxxx
> >> Guest_ipaddr=xxx.xxx.xxx.xx
> >> *Host_ipaddr=xxx.xxx.xxx.xx*
> >> Host_port=( '80' '443' )
> >> Guest_port=( '80' '443' )
>
> In fact, these two lines are also bashisms. All the more reason to
> require bash.
>
> >> length=$(( ${#...
2009 May 29
0
[PATCH server] last patch to implement remote freeipa
...for your management server select \"y\"
otherwise select \"n\" and a dns server will be configured during the install', RED) %>")
dns_servers = prompt_yes_no("Use this systems's dns servers?")
+end
guest_httpd_ipaddr = interfaces[guest_httpd_dev]
guest_ipaddr = interfaces[guest_dev]
@@ -235,7 +245,11 @@ if dhcp_setup == "n"
dhcp_start = prompt_for_answer("Enter the dhcp pool start address (example: 3):", :regex => OCTET)
dhcp_stop = prompt_for_answer("Enter the dhcp pool end addess (example: 100):", :regex =>...
2015 Jun 12
1
Re: Recommended change for the networking page in wiki