forked from stratum/stratum
-
Notifications
You must be signed in to change notification settings - Fork 1
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
Add Port from chassis config file #3
Open
Kinnyeo
wants to merge
23
commits into
NIKSS-vSwitch:main-nikss
Choose a base branch
from
Kinnyeo:AddPort
base: main-nikss
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from all commits
Commits
Show all changes
23 commits
Select commit
Hold shift + click to select a range
7743e6f
Auto AddPort from file
Kinnyeo 5ce31ff
Revert "Auto AddPort from file"
Kinnyeo bd5c1ea
test
Kinnyeo e73732f
Cleanup2
Kinnyeo 4f8668a
Add Port
Kinnyeo fec1208
Update .gitignore
Kinnyeo 0d0f976
Delete script.py
Kinnyeo 7241e1b
Delete setup.sh
Kinnyeo 9a46750
Update nikss_chassis_manager.cc
Kinnyeo 6a4d205
Update nikss_wrapper.cc
Kinnyeo 6f714da
Update nikss_chassis_manager.h
Kinnyeo e86dd6b
Update nikss_interface.h
Kinnyeo a94e94e
Update nikss_node.cc
Kinnyeo ba8e13b
Update nikss_node.h
Kinnyeo f422481
Update nikss_switch.cc
Kinnyeo afeda40
Update nikss_switch.h
Kinnyeo 89b3777
Update nikss_wrapper.h
Kinnyeo ddbec7f
Merge branch 'main-nikss' into AddPort
Kinnyeo fb4b6c2
Revert "Merge branch 'main-nikss' into AddPort"
Kinnyeo 4f9455d
Update setup_dev_env.sh
Kinnyeo 13a4647
Update nikss_switch.cc
Kinnyeo 4408fc6
Update nikss_wrapper.cc
Kinnyeo d6928c8
Update nikss_wrapper.h
Kinnyeo 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 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 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 |
---|---|---|
@@ -0,0 +1,34 @@ | ||
description: "Sample config for nikss" | ||
chassis { | ||
platform: PLT_P4_SOFT_SWITCH | ||
name: "nikss" | ||
} | ||
nodes { | ||
id: 1 | ||
slot: 1 | ||
index: 1 | ||
} | ||
singleton_ports { | ||
id: 1 | ||
name: "veth1" | ||
slot: 1 | ||
port: 1 | ||
channel: 1 | ||
speed_bps: 100000000000 | ||
config_params { | ||
admin_state: ADMIN_STATE_ENABLED | ||
} | ||
node: 1 | ||
} | ||
singleton_ports { | ||
id: 2 | ||
name: "veth3" | ||
slot: 1 | ||
port: 2 | ||
channel: 1 | ||
speed_bps: 100000000000 | ||
config_params { | ||
admin_state: ADMIN_STATE_ENABLED | ||
} | ||
node: 1 | ||
} |
This file contains 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 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 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 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 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 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 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 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 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 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
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.
Can we fix this issue in this PR?
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.
I think we can postpone this for later PR because it is not critical for now