X-Git-Url: https://gerrit.fd.io/r/gitweb?p=csit.git;a=blobdiff_plain;f=resources%2Flibraries%2Frobot%2Fipv4.robot;h=4464cbc53c12f74013743bdaf2e7947c550bc73a;hp=63a118833250c6fa82fe4af7d8536ca703404d39;hb=bcf99a0eb0e8770f28c2e3c8c0965ad6c0acba94;hpb=da8aebf2e722f2c441a03b300de71f9143d010a3 diff --git a/resources/libraries/robot/ipv4.robot b/resources/libraries/robot/ipv4.robot index 63a1188332..4464cbc53c 100644 --- a/resources/libraries/robot/ipv4.robot +++ b/resources/libraries/robot/ipv4.robot @@ -103,3 +103,54 @@ | | | ... | ${dst_mac} | ${src_ip} | ${dst_ip} | | Run Traffic Script On Node | arp_request.py | ${tg_node} | ${args} +| IP addresses are set on interfaces +| | [Documentation] | Iterates through @{args} list and Set Interface Address +| | ... | for every (${dut_node}, ${interface}, ${address}, +| | ... | ${prefix}) tuple. +| | ... +| | ... | *Arguments:* +| | ... | - ${dut_node} - Node where IP address should be set to. +| | ... | Type: dictionary +| | ... | - ${interface} - Interface name. Type: string +| | ... | - ${address} - IP address. Type: string +| | ... | - ${prefix} - Prefix length. Type: integer +| | ... +| | ... | *Example:* +| | ... +| | ... | \| IP addresses are set on interfaces \ +| | ... | \| ${dut1_node} \| ${dut1_to_dut2} \| 192.168.1.1 \| 24 \| +| | ... | \| ... \| ${dut1_node} \| ${dut1_to_tg} \| 192.168.2.1 \| 24 \| +| | ... +| | [Arguments] | @{args} +| | :FOR | ${dut_node} | ${interface} | ${address} | ${prefix} | IN | @{args} +| | | Set Interface Address | ${dut_node} | ${interface} | ${address} +| | | ... | ${prefix} + +| Node replies to ICMP echo request +| | [Documentation] | Run traffic script that waits for ICMP reply and ignores +| | ... | all other packets. +| | ... +| | ... | *Arguments:* +| | ... | - tg_node - TG node where run traffic script. Type: dictionary +| | ... | - tg_interface - TG interface where send ICMP echo request. +| | ... | Type: string +| | ... | - dst_mac - Destination MAC address. Type: string +| | ... | - src_mac - Source MAC address. Type: string +| | ... | - dst_ip - Destination IP address. Type: string +| | ... | - src_ip - Source IP address. Type: string +| | ... | - timeout - Wait timeout in seconds (Default: 10). Type: integer +| | ... +| | ... | *Example:* +| | ... +| | ... | \| Node replies to ICMP echo request \ +| | ... | \| ${nodes['TG']} \| eth2 \ +| | ... | \| 08:00:27:46:2b:4c \| 08:00:27:66:b8:57 \ +| | ... | \| 192.168.23.10 \| 192.168.23.1 \| 10 \| +| | ... +| | [Arguments] | ${tg_node} | ${tg_interface} +| | ... | ${dst_mac} | ${src_mac} | ${dst_ip} | ${src_ip} | ${timeout}=${10} +| | ${args}= | Catenate | --rx_if | ${tg_interface} | --tx_if | ${tg_interface} +| | ... | --dst_mac | ${dst_mac} | --src_mac | ${src_mac} +| | ... | --dst_ip | ${dst_ip} | --src_ip | ${src_ip} | --timeout | ${timeout} +| | Run Traffic Script On Node | send_icmp_wait_for_reply.py +| | ... | ${tg_node} | ${args}