Hi Vincent,
I'm going to check with upstream on this. Have you tried using the -i
command-line switch? In previous versions of clusterssh, this was the
appropriate way to ignore the warning.
Thanks,
Tony
Vincent Danjean wrote:
Package: clusterssh
Version: 3.22-1
Severity: normal
Hi,
Due to firewalls, I use generic proxycommand in my .ssh/config.
I have something as:
Host *.fakedomain
ProxyCommand ssh fakedomain "tcpconnect `basename %h .fakedomain` %p"
Host fakedomain
Hostname firewall.fakedomain.org
User mylogin
This allow me to join any host 'foo' (behind the firewall) using:
ssh [EMAIL PROTECTED]
If I run 'cssh -e [EMAIL PROTECTED]', it works
If I add '[EMAIL PROTECTED]' in a tag, it does not. I got the error
message:
WARNING: 'foo.fakedomain' unknown (unable to resolve and not in user ssh
config file)
(foo.fakedomain is not in the ssh config file: it is *.fakedomain ...)
So please, either disable this check or provide a way to disable it
(globaly or for specific computers or tags)
Here is what I do on my computer (this fix is too specific for my case,
so I did not add the tag 'patch' for this bugreport):
--- cssh.orig 2008-02-18 09:07:41.000000000 +0100
+++ cssh 2008-02-18 09:11:23.000000000 +0100
@@ -829,6 +829,9 @@
if ( $ssh_hostnames{$host} ) {
return 1;
}
+ elsif ($host =~ /\.fakedomain$/) {
+ return 1;
+ }
else {
logmsg( 1, "Failed to check host (falling back to gethost): $!"
);
return gethost($host);
Best regards,
Vincent
-- System Information:
Debian Release: lenny/sid
APT prefers unstable
APT policy: (990, 'unstable'), (500, 'testing'), (500, 'stable'), (1,
'experimental')
Architecture: i386 (i686)
Kernel: Linux 2.6.24-1-686 (SMP w/1 CPU core)
Locale: LANG=fr_FR.UTF-8, LC_CTYPE=fr_FR.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/bash
Versions of packages clusterssh depends on:
ii libx11-protocol-perl 0.56-2 Perl module for the X Window Syste
ii openssh-client 1:4.7p1-4 secure shell client, an rlogin/rsh
ii perl-tk 1:804.027-8 Perl module providing the Tk graph
ii xterm 231-1 X terminal emulator
clusterssh recommends no packages.
-- no debconf information
--
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]