search for: ocancel

Displaying 4 results from an estimated 4 matches for "ocancel".

Did you mean: cancel
2014 Mar 28
1
Using -Ocancel on dynamically allocated ports
Greetings, So, the typical use of -Ocancel is quite straightforward: > ssh -Oforward -R 12345:127.0.0.1:56789 user at remote > ssh -Ocancel -R 12345:127.0.0.1:56789 user at remote But this is not so good: > ssh -Oforward -R 0:127.0.0.1:56789 user at remote Allocated port 12345 for remote forward to 127.0.0.1:56789 12345 > ssh...
2014 Apr 01
1
[Bug 2219] New: Can't use -Ocancel on forward of dynamically allocated remote port
https://bugzilla.mindrot.org/show_bug.cgi?id=2219 Bug ID: 2219 Summary: Can't use -Ocancel on forward of dynamically allocated remote port Product: Portable OpenSSH Version: 6.5p1 Hardware: Other OS: Linux Status: NEW Severity: enhancement Priority: P5 Component: ssh Ass...
2003 May 12
1
ISDN channels
...sting a E400P with PRI signaling. When I start asterisk (-vvc), i get the fowlling messages in /var/log/asterisk/message: May 12 12:42:06 WARNING[1024]: File chan_iax2.c, Line 4931 (set_config): Ignoring port for now May 12 12:42:06 WARNING[1024]: File chan_zap.c, Line 6525 (load_module): Ignoring ocancel And 'show channels' returns no channels. Can anyone help me? What the recommended docs to learn how to configure asterisk? thanks Eduardo ----zapata.conf----- [channels] group = 1 context = pstn switchtype = national signalling = pri_cpe channel => 1-4 ocancel = yes ----asterisk....
2014 Jul 24
0
[PATCH 1/1] fix regress/multiplex.sh
....693211b 100644 --- a/regress/multiplex.sh +++ b/regress/multiplex.sh @@ -165,8 +165,8 @@ echo "" | $NC -U $OBJ/unix-1.fwd | grep "Protocol mismatch" >/dev/null 2>&1 \ || fail "connect to remote forwarded path failed" ${SSH} -F $OBJ/ssh_config -S $CTL -Ocancel -R $OBJ/unix-1.fwd:localhost:$PORT otherhost \ || fail "cancel remote forward failed" -N=$(echo "" | $NC -U $OBJ/unix-1.fwd 2>&1 | wc -l) N=$(echo "xyzzy" | $NC -U $OBJ/unix-1.fwd 2>&1 | grep "xyzzy" | wc -l) +test ${N} -eq 0 || fail &quo...