Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
emulab
emulab-devel
Commits
8b48062c
Commit
8b48062c
authored
Aug 13, 2003
by
Robert Ricci
Browse files
Add a preliminary cut ofa Windows version of the ssh-mime script -
not linked to yet.
parent
9226f2b5
Changes
2
Hide whitespace changes
Inline
Side-by-side
www/GNUmakefile.in
View file @
8b48062c
...
...
@@ -37,7 +37,8 @@ FILES += $(wildcard $(SRCDIR)/*.html)
FILES += $(wildcard $(SRCDIR)/*.php3)
FILES += $(wildcard $(SRCDIR)/*.php)
FILES += $(wildcard $(SRCDIR)/*.ico)
FILES += $(SRCDIR)/.htaccess $(SRCDIR)/error.shtml $(SRCDIR)/ssh-mime.pl
FILES += $(SRCDIR)/.htaccess $(SRCDIR)/error.shtml $(SRCDIR)/ssh-mime.pl \
$(SRCDIR)/ssh-mime-windows.pl
AUTOICONS = $(wildcard $(SRCDIR)/autostatus-icons/*.gif)
AUTOICONS += $(wildcard $(SRCDIR)/autostatus-icons/*.png)
...
...
www/ssh-mime-windows.pl
0 → 100644
View file @
8b48062c
#!/usr/bin/perl -w
#
# EMULAB-COPYRIGHT
# Copyright (c) 2000-2003 University of Utah and the Flux Group.
# All rights reserved.
#
use
English
;
use
Getopt::
Std
;
#
# This is a helper program for your web browser. It allows you to ssh
# to an experimental node by clicking on a menu option in the shownode
# page. Its extremely helpful with jailed nodes, where sshd is either
# running on another port, or on a private IP. Please see the Emulab FAQ
# for instructions on how to install this helper program.
#
# Obviously, it helps to have an ssh agent running.
#
sub
usage
()
{
print
(
STDERR
"
ssh-mime.pl <control-file>
\n
");
}
my
$optlist
=
"";
my
$config
;
my
$puttypath
=
"
C:
\
/putty.exe
";
my
$tmpfile
=
"
C:
\
/temp
\
/sshcmd
";
my
$logfile
=
"
C:
\
/temp
\
/ssh-mime.log
";
# Locals
my
$hostname
;
my
$gateway
;
my
$port
=
"";
my
$login
=
"";
#
# Turn off line buffering on output
#
$|
=
1
;
#
# Log all messages to a file
#
open
STDOUT
,
"
>
$logfile
"
or
die
"
Unable to log to
$logfile
: $!
\n
";
open
STDERR
,
'
>&STDOUT
'
or
die
"
Can't dup stdout: $!
";
#
# Parse command arguments. Once we return from getopts, all that should be
# left are the required arguments.
#
%options
=
();
if
(
!
getopts
(
$optlist
,
\
%options
))
{
usage
();
}
if
(
@ARGV
!=
1
)
{
usage
();
}
$config
=
$ARGV
[
0
];
#
# Open up the config file. It tells us what to do.
#
open
(
CONFIG
,
"
<
$config
")
or
die
("
Could not open config file
$config
: $!
\n
");
while
(
<
CONFIG
>
)
{
chomp
();
SWITCH1:
{
/^port:\s*(\d+)$/
&&
do
{
$port
=
"
-p $1
";
last
SWITCH1
;
};
/^hostname:\s*([-\w\.]+)$/
&&
do
{
$hostname
=
$
1
;
last
SWITCH1
;
};
/^gateway:\s*([-\w\.]+)$/
&&
do
{
$gateway
=
$
1
;
last
SWITCH1
;
};
/^login:\s*([-\w]+)$/
&&
do
{
$login
=
"
-l $1
";
last
SWITCH1
;
};
}
}
close
(
CONFIG
);
#
# Must have a hostip. Port is optional.
#
if
(
!
defined
(
$hostname
))
{
die
("
Config file must specify a hostname
\n
");
}
#
# Exec an ssh.
#
if
(
!
defined
(
$gateway
))
{
exec
"
$puttypath
-ssh
$login
$port
$hostname
";
}
else
{
open
TF
,
"
>
$tmpfile
"
or
die
"
Unable to open
$tmpfile
\n
";
print
TF
"
ssh -tt -o StrictHostKeyChecking=no
$port
$hostname
";
close
TF
;
exec
"
$puttypath
-A -ssh -t
$login
-m
$tmpfile
$gateway
";
}
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment