-
Notifications
You must be signed in to change notification settings - Fork 87
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 first version of ConfigDB schema #9
base: master
Are you sure you want to change the base?
Conversation
doc/configdb-schema.md
Outdated
### Definitions of common tokens | ||
name = 1*DIGIT/1*ALPHA | ||
ref_hash_key_reference = "[" hash_key "]" ;The token is a refernce to another valid DB key. | ||
hash_key = name ; a valid key name (i.e. exists in DB) |
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.
align the ;
doc/configdb-schema.md
Outdated
; Key | ||
portchannel_key = 1*64VCHAR | ||
; Attributes | ||
members = LIST(1*64VCHAR) |
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.
how different members are split?
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.
by comma, see line 7.
id = 1*5DIGIT | ||
members = LIST(1*64VCHAR) | ||
|
||
### VLAN_INTERFACE table |
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.
why do we have different interface table for VLAN? why not inside the INTERFACE table?
; Attributes | ||
members = LIST(1*64VCHAR) | ||
|
||
### PORTCHANNEL_INTERFACE table |
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.
why do we have different interface table for port channel? why not inside the INTERFACE table?
; Attributes | ||
; No attributes | ||
|
||
### PORTCHANNEL table |
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.
it's better to use LAG. port channel is mostly a NXOS term.
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.
check comments
No description provided.