-
Notifications
You must be signed in to change notification settings - Fork 1.3k
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
isisd: Even after configuring "no hostname dynamic", the topology still displays the hostname. #16232
Conversation
002e4fe
to
7d89d44
Compare
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.
Squash to a single commit.
02edd43
to
804d56f
Compare
Done. |
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.
looks good
isisd/isisd.h
Outdated
@@ -285,10 +285,12 @@ void isis_area_add_circuit(struct isis_area *area, | |||
void isis_area_del_circuit(struct isis_area *area, | |||
struct isis_circuit *circuit); | |||
|
|||
void delete_area_addr(void *arg); |
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.
let's rename this function to be inline with the exposed function names.
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.
Rename delete_area_addr()
to isis_area_address_delete()
.
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.
Let's clean up the commit message. Please enter the commit ....
should not be there.
The signed off line does not match the name and email address above. I would expect that they should be matching. |
65e1f9f
to
0db4699
Compare
…ll displays the hostname. The command "show isis topology" calls print_sys_hostname() to display the system ID or hostname, but it does not check the area->dynhostname flag. Signed-off-by: zhou-run <[email protected]>
Done. |
Done. |
@ton31337 can you unblock this? :-) |
it's unblocked 🙂 |
The command "show isis topology" calls
print_sys_hostname()
to display the system ID or hostname, but it does not check thearea->dynhostname
flag.Signed-off-by: zhou-run [email protected]