-
Notifications
You must be signed in to change notification settings - Fork 1k
[TACACS][IPv6]: Enable IPv6 in ptf-docker and add TACACS IPv6 test case #1851
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from 5 commits
Commits
Show all changes
12 commits
Select commit
Hold shift + click to select a range
d40c9cc
[IPv6][Tacacs]: Updates required to run tacacs ipv6 test.
SuvarnaMeenakshi 328186c
[IPv6][Tacacs]: Updates required to add ipv6 address in ptf-docker
SuvarnaMeenakshi d736efb
Removed debug code.
SuvarnaMeenakshi cbf38c7
[ipv6]: Add ipv6 argument in renumber and refresh dut tasks.
SuvarnaMeenakshi cb8506e
Fix review comments.
SuvarnaMeenakshi 5e8c081
Merge remote-tracking branch 'azure/master' into tacacs_ipv6
SuvarnaMeenakshi df8ba1a
Simplify IPv6 address.
SuvarnaMeenakshi f0e46d5
[IPv6]: Add test case for IPv6 TACACS.
SuvarnaMeenakshi b4b8d55
Remove test username.
SuvarnaMeenakshi 1fe6dcc
Fix function name.
SuvarnaMeenakshi 9dd4964
Modify function names as per review comments.
SuvarnaMeenakshi b257201
Modify function name as per review comment.
SuvarnaMeenakshi File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -24,6 +24,7 @@ | |
| # -e dut_name=str-msn2700-01 - the name of target dut | ||
| # -e VM_base=VM0300 - the VM name which is used to as base to calculate VM name for this set | ||
| # -e ptf_ip=10.255.0.255/23 - the ip address and prefix of ptf container mgmt interface | ||
| # -e ptf_ipv6=fec0:0:0:0:0:ffff:afa:1/64 - the ipv6 address and prefix of ptf container mgmt interface | ||
|
||
| # -e topo=t0 - the name of removed topo | ||
| # -e ptf_imagename=docker-ptf - name of a docker-image which will be used for the ptf docker container | ||
|
|
||
|
|
@@ -52,6 +53,10 @@ | |
| fail: msg="Define ptf ip variable with -e ptf_ip=something" | ||
| when: ptf_ip is not defined | ||
|
|
||
| - name: Check that variable ptf_ipv6 is defined | ||
| fail: msg="Define ptf ipv6 variable with -e ptf_ipv6=something" | ||
| when: ptf_ipv6 is not defined | ||
|
|
||
| - name: Check that variable topo is defined | ||
| fail: msg="Define topo variable with -e topo=something" | ||
| when: topo is not defined | ||
|
|
||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,5 +1,5 @@ | ||
| # conf-name,group-name,topo,ptf_image_name,ptf,ptf_ip,server,vm_base,dut,comment | ||
| vms-kvm-t0,vms6-1,t0,docker-ptf,ptf-unknown,10.250.0.102/24,server_1,VM0100,[vlab-01],Tests virtual switch vm | ||
| vms-kvm-t0-64,vms6-1,t0-64,docker-ptf,ptf-unknown,10.250.0.102/24,server_1,VM0100,[vlab-02],Tests virtual switch vm | ||
| vms-kvm-t1-lag,vms6-2,t1-lag,docker-ptf,ptf-unknown,10.250.0.106/24,server_1,VM0104,[vlab-03],Tests virtual switch vm | ||
| vms-kvm-t0-2,vms6-3,t0,docker-ptf,ptf-unknown,10.250.0.108/24,server_1,VM0104,[vlab-04],Tests virtual switch vm | ||
| # conf-name,group-name,topo,ptf_image_name,ptf,ptf_ip,ptf_ipv6,server,vm_base,dut,comment | ||
| vms-kvm-t0,vms6-1,t0,docker-ptf,ptf-unknown,10.250.0.102/24,fec0:0:0:0:0:ffff:afa:2/64,server_1,VM0100,[vlab-01],Tests virtual switch vm | ||
| vms-kvm-t0-64,vms6-1,t0-64,docker-ptf,ptf-unknown,10.250.0.102/24,fec0:0:0:0:0:ffff:afa:2/64,server_1,VM0100,[vlab-02],Tests virtual switch vm | ||
| vms-kvm-t1-lag,vms6-2,t1-lag,docker-ptf,ptf-unknown,10.250.0.106/24,fec0:0:0:0:0:ffff:afa:6/64,server_1,VM0104,[vlab-03],Tests virtual switch vm | ||
| vms-kvm-t0-2,vms6-3,t0,docker-ptf,ptf-unknown,10.250.0.108/24,fec0:0:0:0:0:ffff:afa:8/64,server_1,VM0104,[vlab-04],Tests virtual switch vm |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
this can be simplified as fec0::ffff:afa:9
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
fixed as per comment.