Leon. wrote:
>>You can download it from www.unixspace.com/download, the evaluation
>>version has not time limit.
>>
>>Alexander Lashenko.
>>
>
>
>
> What the heck does "setup.exe" do ? it just runs and says "setup complete".
>
>
Setup.exe just creates the C:/Program Files/UnixSpace folder, 2
subdirectories bin and etc and copies files.
> Does it enter registry items ? If so, how do i delete these registry entries
> ?
No.
> I assume it used the registry , as without running setup.exe
> "unixspace.exe" says "must be run from c:\Program Files\Unixspace\ or some
> such.
> But it ran from d:\unixspace\ after i ran setup.exe from d:\unixspace
>
>
> Unixspace.exe .... shows a screen allowing me to specificy protocols but not
> port number.
SSH - port 22, telnet - 23, rlogin - 513, http-telnet - 80.
Do you think it is necessary to have the ability to change it?
> Obviously it assumes protocol specifies port number.
>
> It didnt ask me if i wanted to start 4 windows, it has 4 windows at all
> times and 4 windows only.
>
>
> if i go to window 4, it says it has an error, even though i never configured
> window 4 to connect anywhere. (why not a little 'enable' radio button on
> each window ? )
>
>
If you want to use other virtual consoles (or windows if you call it
so), you should set up settings for this channel before using. First of
all you shoud edit the 'Host Setting' dialog, after that click on 'Save'
and on 'Connect' in the main menu.
Concerning 'enable' button: What should this button do?
For instance on my PC I use all 4 screens:
Screen 1: 100.1.1.10, Protocol: telnet, Terminal: UnixSpace, lines: 42
(this is my FreeBSD box in the local network),
Screen 2: 120.1.1.1, Protocol: telnet, Terminal: UnixSpace, lines: 42
(it is a Linux box),
Screen 3: unixspace.com, Protocol: SSH, Terminal: Linux, lines: 25
(remote server)
Screen 4: 120.1.1.10, Protocol: http-telnet, Terminal: Linix, Lines: 42
(Linux as a virtual PC inside Windows)
Basically I use 1-2 screens but until I click on Screen 3 or Screen 4
they are disconnected. If I want to connect to unixspace.com, the
connection will only exist after I click on Screen 3.
>
> Why make ssh a proxy system ? does that mean its an open ssh proxy , if
> you dont firewall it off ?
>
>
At the beginning I wanted to add this protocol into UnixSpace code, but
laterI found a better solution. UnixSpace is a graphical terminal and it
is its main feature. Communication protocol is not a part of the
terminal, so I made it into an independent server. The telnet protocol
is very simple and it is integrated in the terminal, but SSH2 protocol
is very big (260KB against 80KB of the terminal binary)
Now I have such architecture:
Terminal<-port 2348->Proxy<- port 23-->Remote Unix
-----------Windows----------------- ----Unix-------
This solution is more flexible. You can run SSHProxy, and try something
like:
telnet 127.1 2348
>remote_IP<Enter>
Login:
A.L.