Skip to content

A simple telnet server written in Java. (Roughly) Support VT100 control sequences.

Notifications You must be signed in to change notification settings

hsshss/EasyTelnetServer

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

20 Commits
 
 
 
 

Repository files navigation

EasyTelnetServer

A simple telnet server written in Java.
(Roughly) Support VT100 control sequences.

Example

EasyShellServer srv = new EasyShellServer();

srv.registerCommand("echo", new Command() {
	@Override
	public void execute(String name, String argument, EasyTerminal terminal) throws IOException {
		terminal.writeLine(argument);
		terminal.flush();
	}
});

srv.start(23);

Support Telnet Client

  • PuTTY
  • TeraTerm
  • GNU telnet
  • Windows telnet

License

Public Domain

About

A simple telnet server written in Java. (Roughly) Support VT100 control sequences.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages