- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-03-2018 05:16 AM - edited 03-01-2019 06:19 PM
Hello, i would like to use except script to automated the configuration of my switches . I tried it's work well but i have somes errors with the banner.
Here is my script :
but i have this errors :
what's the problems ?
Thanks
Solved! Go to Solution.
- Labels:
-
Network Management
Accepted Solutions

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-04-2018 05:55 AM
You should add -- after your send lines to prevent additional argument processing:
send -- ...
Instead of double-quotes, use {} as that is Tcl's way of doing literals without additional expansion:
send -- {This is my banner}

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-04-2018 05:55 AM
You should add -- after your send lines to prevent additional argument processing:
send -- ...
Instead of double-quotes, use {} as that is Tcl's way of doing literals without additional expansion:
send -- {This is my banner}
