search for: ipv4address

Displaying 8 results from an estimated 8 matches for "ipv4address".

Did you mean: ipv4_address
2020 Aug 10
3
Docker container isolation not working in CentOS 7
...;m starting two Nginx containers named "webserver1" and "webserver2": $ docker run -dit --name webserver1 nginx $ docker run -dit --name webserver2 nginx These two containers have the respective 172.17.0.2 and 172.17.0.3 IP addresses: $ docker network inspect bridge | grep -i ipv4address "IPv4Address": "172.17.0.2/16", "IPv4Address": "172.17.0.3/16", The "webserver1" container has the 172.17.0.2 IP address: $ docker exec -it webserver1 hostname -I 172.17.0.2 Since "webserver1" and "w...
2009 May 15
0
[PATCH server] use service layer for Network controller.
...if @parent_type == 'nic' - @bonding = Bonding.find(params[:id]) if @parent_type == 'bonding' and params[:id] - + svc_ip_addresses(params[:parent_type], params[:id]) render :layout => false end - def _create_ip_address - if params[:ip_address][:type] == "IpV4Address" - @ip_address = IpV4Address.new(params[:ip_address]) - else - @ip_address = IpV6Address.new(params[:ip_address]) - end - @ip_address.save! - end - def create_ip_address - begin - _create_ip_address - alert = "Ip Address was successfully created." -...
2020 Apr 02
0
"auth_cache_verify_password_with_worker = yes" does not work with proxy
...river = sql } The sql from /etc/dovecot/dovecot-sql.conf.ext: password_query = SELECT pwdCrypt AS password, \ NULL AS nopassword, \ 'MyMasterUser' AS master, \ 'MyMasterPass' AS pass, \ ipv4address AS host, \ '%u' AS destuser, \ 'Y' AS proxy \ FROM mailbox \ WHERE user = '%u' AND activeFlg = '1' LIMIT 1 The logfile extracts with "auth_cache_verify_password_with_worker = y...
2015 Apr 30
0
ipv6 routing problem
...95 fe80::/64 dev br4 proto kernel metric 256 mtu 1500 advmss 1440 hoplimit 4294967295 default via 2a11:c99:4111:110::11:211 dev br4 metric 1 mtu 1500 advmss 1440 hoplimit 4294967295 Then I added, /etc/sysconfig/network-script/ifcfg-br4 DEVICE=br4 TYPE=Bridge ONBOOT=yes BOOTPROTO=static IPADDR=ipv4address here NETMASK=255.255.255.0 DNS1=mydnsserver.org DELAY=0 NM_CONTROLLED=no IPV6INIT=yes IPV6_AUTOCONF=no #IPV6_DEFROUTE="yes" IPV6_FAILURE_FATAL=yes IPV6ADDR=2a11:c99:4111:110::11:65/64 IPV6_DEFAULTGW= 2a11:c99:4111:110::11:211 I can ping the gateway from the kvm host but I cannot ping6 ou...
2009 Oct 06
0
[PATCH server] new host networking wui
...etwork + # adjust parameters as necessary + params[:nics] = {} if params[:nics].nil? + params[:bondings] = {} if params[:bondings].nil? + params[:nics].each { |id,n| + unless n[:ip_address].nil? + # FIXME make this able to be v4 or v6 address + n[:ip_addresses] = [IpV4Address.new({ :address => n[:ip_address] })] + n.delete(:ip_address) + end + } + params[:bondings].each { |id,b| + unless b[:ip_address].nil? + # FIXME make this able to be v4 or v6 address + b[:ip_addresses] = [IpV4Address.new({ :address => b[:ip_address] })] +...
2009 Nov 03
0
[PATCH server] suggest ip address for nics/bondings on edit host/vm network forms
...+17,21 @@ class IpAddressTest < ActiveSupport::TestCase # this networking is in flux. Revisit this test once that stabilizes. flunk "Ip Address must be associated with network, nic, or bonding" unless @ip_address.valid? end + + def test_ip_address_range + ipv4addr = IpV4Address.new :address => '1.2.3.0', + :netmask => '255.255.255.0', + :gateway => '1.2.3.1', + :broadcast => '1.2.3.255', + :network_id =>...
2009 Jul 30
1
[PATCH server] fixes to the multiple vm/nets component
...nic = { :mac => params[:macs][i], + :network_id => network_id, :bandwidth => 0 } + + if(Network.find(network_id).boot_type.proto == 'static') + # FIXME make this able to be v4 or v6 address + nic[:ip_addresses] = [IpV4Address.new({ :address => params[:ip_addresses][ip_counter] })] + ip_counter += 1 + end + + params[:nics].push(nic) + end + } - end + end end end diff --git a/src/app/views/vm/_form.rhtml b/src/app/views/vm/_form.rhtml index 2373678..5...
2009 Jun 30
0
[PATCH server] permit many-to-many vms / networks relationship
...+32,7 @@ class NicTest < Test::Unit::TestCase :usage_type => 1, :bandwidth => 100 ) @nic.host = hosts(:prod_corp_com) - @nic.physical_network = networks(:static_physical_network_one) + @nic.network = networks(:static_physical_network_one) @ip_address = IpV4Address.new( :address => '1.2.3.4', @@ -74,10 +75,100 @@ class NicTest < Test::Unit::TestCase end def test_static_network_nic_must_have_ip - @nic.physical_network = networks(:static_physical_network_one) + @nic.network = networks(:static_physical_network_one) @nic...