Difference between revisions of "GNS3: Port socat pada Ubuntu Image agar bisa di remote di GNS3"

From OnnoWiki
Jump to navigation Jump to search
(New page: Ubuntu punya masalah untuk bisa di remote menggunakan telnet di GNS3. Di Image Ubuntu, kita perlu melakukan apt-get install socat Di preference GNS3 konsole --new-tab -p tabtitle=%d ...)
 
Line 9: Line 9:
 
  konsole --new-tab -p tabtitle=%d -e telnet %h %p
 
  konsole --new-tab -p tabtitle=%d -e telnet %h %p
  
 +
xterm -T %d -e 'telnet %h %p' >/dev/null 2>&1 &
 +
 +
gnome-terminal -t %d -e 'telnet %h %p' >/dev/null 2>&1 &
 
   
 
   
 
Ubah menjadi
 
Ubah menjadi
  
 
  konsole --new-tab -p tabtitle=%d -e socat UNIX-CONNECT:"%s" stdio,raw,echo=0
 
  konsole --new-tab -p tabtitle=%d -e socat UNIX-CONNECT:"%s" stdio,raw,echo=0
 +
 +
xterm -T %d -e 'socat UNIX-CONNECT:"%s" stdio,raw,echo=0' > /dev/null 2>&1 &
 +
 +
gnome-terminal -t %d -e 'socat UNIX-CONNECT:"%s" stdio,raw,echo=0' > /dev/null 2>&1 &

Revision as of 16:05, 25 July 2015

Ubuntu punya masalah untuk bisa di remote menggunakan telnet di GNS3.

Di Image Ubuntu, kita perlu melakukan

apt-get install socat

Di preference GNS3

konsole --new-tab -p tabtitle=%d -e telnet %h %p
xterm -T %d -e 'telnet %h %p' >/dev/null 2>&1 &
gnome-terminal -t %d -e 'telnet %h %p' >/dev/null 2>&1 &

Ubah menjadi

konsole --new-tab -p tabtitle=%d -e socat UNIX-CONNECT:"%s" stdio,raw,echo=0
xterm -T %d -e 'socat UNIX-CONNECT:"%s" stdio,raw,echo=0' > /dev/null 2>&1 &
gnome-terminal -t %d -e 'socat UNIX-CONNECT:"%s" stdio,raw,echo=0' > /dev/null 2>&1 &