Lines Matching full:ip

28 ${network_resource}             xyz.openbmc_project.Network.IP.Protocol.IPv4
29 ${static_network_resource} xyz.openbmc_project.Network.IP.AddressOrigin.Static
30 ${ip} 10.6.6.10 variable
73 [Documentation] Configure IP on VLAN and verify it via REST and IPMI.
78 Configure Network Settings On VLAN ${vlan_id} ${ip} ${netmask}
79 Get VLAN URI For IP ${vlan_id} ${ip}
82 Valid Value lan_config['IP Address'] ["${ip}"]
85 Delete IP On VLAN Via REST
86 [Documentation] Delete IP on VLAN and verify it via REST and IPMI.
91 Configure Network Settings On VLAN ${vlan_id} ${ip} ${netmask}
93 Valid Value lan_config['IP Address'] ["${ip}"]
95 ${vlan_ip_uri}= Get VLAN URI For IP ${vlan_id} ${ip}
96 Delete IP And Object ${ip} ${vlan_ip_uri}
98 Get VLAN URI For IP ${vlan_id} ${ip} expected_result=error
101 Should Not Match ${lan_config['IP Address']} ${ip}
104 Delete VLAN When IP Is Configured Via REST
105 [Documentation] Delete IP on VLAN and verify using IPMI.
110 Configure Network Settings On VLAN ${vlan_id} ${ip} ${netmask}
112 Valid Value lan_config['IP Address'] ["${ip}"]
122 [Documentation] Create VLAN ID & IP , reboot and verify.
128 Configure Network Settings On VLAN ${vlan_id} ${ip} ${netmask}
130 Valid Value lan_config['IP Address'] ["${ip}"]
136 Get VLAN URI For IP ${vlan_id} ${ip}
139 Valid Value lan_config['IP Address'] ["${ip}"]
164 FOR ${ip} IN @{ip_addresses}
165 Configure Network Settings On VLAN ${vlan_id} ${ip} ${netmask}
166 ${vlan_ip_uri}= Get VLAN URI For IP ${vlan_id} ${ip}
167 Delete IP And Object ${ip} ${vlan_ip_uri}
169 Get VLAN URI For IP ${vlan_id} ${ip} expected_result=error
172 Should Not Match ${lan_config['IP Address']} ${ip}
195 FOR ${ip} IN @{ip_addresses}
196 Configure Network Settings On VLAN ${vlan_id} ${ip} ${netmask}
200 Valid Value lan_config['IP Address'] ["${ip_addresses[0]}"]
203 Create And Delete VLAN And IP On It Multiple Times With BMC Reboot
204 [Documentation] Create and delete VLAN and IP on it multiple times with BMC reboot.
211 Configure Network Settings On VLAN ${vlan_id} ${ip} ${netmask}
212 ${vlan_ip_uri}= Get VLAN URI For IP ${vlan_id} ${ip}
213 Delete IP And Object ${ip} ${vlan_ip_uri}
214 Get VLAN URI For IP ${vlan_id} ${ip} expected_result=error
262 # vlan_record Dictionary of IP configuration information of a VLAN.
267 # "Origin": "xyz.openbmc_project.Network.IP.AddressOrigin.Static",
269 # "Type": "xyz.openbmc_project.Network.IP.Protocol.IPv4"}
271 # id The VLAN ID corresponding to the IP Configuration records contained
336 ... /sbin/ip addr | grep @eth0 | cut -f1 -d@ | cut -f2 -d.
342 Get VLAN URI For IP
343 [Documentation] Get and return the URI for a VLAN IP.
348 # vlan_ip The VLAN IP (e.g. 'x.x.x.x').
349 # expected_result Expected status to check existence of VLAN IP URI. (e.g. 'valid')
356 ... msg=Could not find a uri for vlan "${vlan_id}" with IP "${vlan_ip}".
359 Should Be Equal ${status} ${True} msg=VLAN IP URI doesn't exist!.
361 Should Be Equal ${status} ${False} msg=VLAN IP URI exists!.