search for: current_ip

Displaying 5 results from an estimated 5 matches for "current_ip".

Did you mean: current_id
2011 Aug 11
0
[PATCH] map nics-> bridges correctly in network pages, when cancelling nic configuration return to network page
....ipv4_netdevgateway.setCallback(self.ipv4_gateway_callback) + if not dev_bridge is None: + dev = dev_bridge if "OVIRT_IP_ADDRESS" in OVIRT_VARS: self.ipv4_netdevip.set(OVIRT_VARS["OVIRT_IP_ADDRESS"]) else: - current_ip = get_ip_address(self.nic_lb.current()) - if current_ip == "": - current_ip = get_ip_address("br" + self.nic_lb.current()) + current_ip = get_ip_address(dev) if current_ip != "": self.ipv4_net...
2011 Aug 03
0
[PATCH] display ipv6 address in networking details page, also fix ipv6 netmask configurations.
..."", scroll = 0) self.ipv6_netdevgateway.setCallback(self.ipv6_gateway_callback) + if "OVIRT_IPV6_ADDRESS" in OVIRT_VARS: + self.ipv6_netdevip.set(OVIRT_VARS["OVIRT_IPV6_ADDRESS"]) + else: + try: + current_ip, current_netmask = get_ipv6_address(self.nic_lb.current()) + except: + current_ip = "" + current_netmask = "" + if current_ip == "": + try: + current_ip, current_netmask =...
2011 Aug 03
1
[PATCH] display ipv6 address in networking details page, also fix ipv6 netmask configurations
..."", scroll = 0) self.ipv6_netdevgateway.setCallback(self.ipv6_gateway_callback) + if "OVIRT_IPV6_ADDRESS" in OVIRT_VARS: + self.ipv6_netdevip.set(OVIRT_VARS["OVIRT_IPV6_ADDRESS"]) + else: + try: + current_ip, current_netmask = get_ipv6_address(self.nic_lb.current()) + except: + current_ip = "" + current_netmask = "" + if current_ip == "": + try: + current_ip, current_netmask =...
2020 Feb 29
2
samba_dnsupdate
On this page... https://wiki.samba.org/index.php/Changing_the_IP_Address_of_a_Samba_AD_DC ...is this command... # samba_dnsupdate --verbose ...supposed to update ALL the various forward zone A records and PTR records in the DNS? Paul
2020 Mar 01
2
samba_dnsupdate
...update all the records found in a file called dns_update_list, which on Debian, is to be found here: > > /var/lib/samba/private/dns_update_list > Thanks Rowland. Is it possible to add some feature requests for extra options for samba_dnsupdate please? 1) --dry-run :) 2) --current-ip=CURRENT_IP to force using this * 3) --all-names description, what does this mean? 4) Some proper examples on the Wiki or man pages, and especially the kinit option... --use-nsupdate Use nsupdate command to make updates over DNS (default, if kinit successful) * yester...