blob: 196dbaadf0e037abdb7b633f71fad22ffc185e57 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
|
Here are some Hurd boxes that users have made available to the public:
Barry deFreese:
<table border="1" cellpadding="1" cellspacing="0">
<tr>
<th bgcolor="#99CCCC"><strong>Host Name</strong></th>
<th bgcolor="#99CCCC"><strong>Access</strong></th>
<th bgcolor="#99CCCC"><strong>Port</strong></th>
<th bgcolor="#99CCCC"><strong>Distro</strong></th>
<th bgcolor="#99CCCC"><strong>Machine Specs</strong></th>
</tr>
<tr>
<td> flubber.bddebian.com </td>
<td> ssh </td>
<td> 2250 </td>
<td> Debian </td>
<td> PII 550Mhz 384Mb </td>
</tr>
<tr>
<td> clubber.bddebian.com </td>
<td> ssh </td>
<td> 2251 </td>
<td> Debian </td>
<td> PIII 1Ghz 384Mb </td>
</tr>
<tr>
<td> gnubber.bddebian.com </td>
<td> ssh </td>
<td> 2254 </td>
<td> Debian </td>
<td> PII 733Mhz 384Mb </td>
</tr>
</table>
Contact **bddebian** or **tschwinge** in [[HurdIRC]] for details or to request an account.
To be able to use just `ssh [machine]`, you should append your public SSH key to _~/.ssh/authorized\_keys_ on the remote machine.
And if you don't want to worry about the machines's IP addresses changing (due to the dial-up connection) or the host keys changing every now and then (when the machines are re-installed), put something like the following into _~/.ssh/config_ of the machine you connect from:
Host clubber.bddebian.com clubber
HostName clubber.bddebian.com
Port 2251
Host flubber.bddebian.com flubber
HostName flubber.bddebian.com
Port 2250
Host gnubber.bddebian.com gnubber
HostName gnubber.bddebian.com
Port 2254
Host *.bddebian.com clubber flubber gnubber
CheckHostIP no
UserKnownHostsFile /dev/null
StrictHostKeyChecking no
User [username]
-- [[Main/BarryDeFreese]] - 22 Feb 2006
|