cancel
Showing results for 
Search instead for 
Did you mean: 

ACLI Terminal as console application for GNS3

ACLI Terminal as console application for GNS3

tv
New Contributor

Hi,

I'm becoming a big fan of @Ludovico_Steven's ACLI Terminal, and I'm wondering if anyone has managed to use it as the telnet console application in GNS3.

gns3-acli.png

I've been trying with "C:\Users\<myuser>\AppData\Local\Programs\ACLI\Perl\bin\perl.exe C:\Users\<myuser>\AppData\Local\Programs\ACLI\acli.pl %h %p", tried with and without quotes, but no luck so far. Opening this path using Start > Run, while replacing %h with the GNS3VM IP and %p with the telnet port does work. Even better would be to open it directly in ConsoleZ instead of the Windows terminal.

Thanks!

1 ACCEPTED SOLUTION

What I would advise is to use ACLI in a different way, I left default for console but I create for each project a script using console port ID from gns3, here is an example:

dducarre@linux-gns3:~$ cat acli-gns3-3nodes
#/bin/sh

/usr/bin/gnome-terminal --tab -t "VSP-A" -- /usr/share/acli/acli.pl -n localhost 5020
/usr/bin/gnome-terminal --tab -t "VSP-B" -- /usr/share/acli/acli.pl -n localhost 5000
/usr/bin/gnome-terminal --tab -t "VSP-C" -- /usr/share/acli/acli.pl -n localhost 5008
/usr/bin/gnome-terminal --tab -t "ipterm-1" -- /usr/share/acli/acli.pl -n localhost 5016
/usr/bin/gnome-terminal --tab -t "ipterm-2" -- /usr/share/acli/acli.pl -n localhost 5018
/usr/bin/gnome-terminal --tab -t "VSP-1" -- /usr/share/acli/acli.pl -n localhost 5010
/usr/bin/gnome-terminal --tab -t "VSP-2" -- /usr/share/acli/acli.pl -n localhost 5012
/usr/bin/gnome-terminal --tab -t "VSP-3" -- /usr/share/acli/acli.pl -n localhost 5014

Then I login manually and use <CTRL>-T to use interactive mode. Most of the time console generates hidden characters which confuse automatic ACLI login.

 

View solution in original post

3 REPLIES 3

tv
New Contributor

Thanks for your replies Didier, using a shell/batch script to launch all terminal tabs is a good alternative indeed.

Didier_Ducarre
Extreme Employee

I am a big fan as well and adapt the following with ACLI installation path (/usr/share/acli in my case), use

gnome-terminal -t %d -- /usr/share/acli/acli.pl -p %h %p

 

gns3 acli command.jpg

 

What I would advise is to use ACLI in a different way, I left default for console but I create for each project a script using console port ID from gns3, here is an example:

dducarre@linux-gns3:~$ cat acli-gns3-3nodes
#/bin/sh

/usr/bin/gnome-terminal --tab -t "VSP-A" -- /usr/share/acli/acli.pl -n localhost 5020
/usr/bin/gnome-terminal --tab -t "VSP-B" -- /usr/share/acli/acli.pl -n localhost 5000
/usr/bin/gnome-terminal --tab -t "VSP-C" -- /usr/share/acli/acli.pl -n localhost 5008
/usr/bin/gnome-terminal --tab -t "ipterm-1" -- /usr/share/acli/acli.pl -n localhost 5016
/usr/bin/gnome-terminal --tab -t "ipterm-2" -- /usr/share/acli/acli.pl -n localhost 5018
/usr/bin/gnome-terminal --tab -t "VSP-1" -- /usr/share/acli/acli.pl -n localhost 5010
/usr/bin/gnome-terminal --tab -t "VSP-2" -- /usr/share/acli/acli.pl -n localhost 5012
/usr/bin/gnome-terminal --tab -t "VSP-3" -- /usr/share/acli/acli.pl -n localhost 5014

Then I login manually and use <CTRL>-T to use interactive mode. Most of the time console generates hidden characters which confuse automatic ACLI login.

 

GTM-P2G8KFN