vypis z putty:
login as: root
root@xxxxxx's password:
BusyBox v1.16.1 (2012-03-03 02:26:18 CST) built-in shell (ash)
Enter 'help' for a list of built-in commands.
DiskStation> cat /usr/local/umurmur/var/config.config
cat: can't open '/usr/local/umurmur/var/config.config': No such file or director y
DiskStation> cd /usr/local/umurmur/var
DiskStation> ls
umurmur.conf umurmur.crt umurmur.key umurmur.pid umurmurd.log
DiskStation> ls -lah
drwxr-xr-x 2 root root 4.0K Jun 3 15:14 .
drwxr-xr-x 7 root root 4.0K Apr 1 11:35 ..
-rw-r--r-- 1 root root 2.0K Mar 21 20:33 umurmur.conf
-rw-r--r-- 1 root root 875 Apr 1 11:35 umurmur.crt
-rw-r--r-- 1 root root 916 Apr 1 11:35 umurmur.key
-rw-r----- 1 root root 5 Jun 3 20:45 umurmur.pid
-rwxrwxrwx 1 root root 2.0K Jun 3 20:45 umurmurd.log
DiskStation> cat /usr/local/umurmur/var/umurmur.conf
max_bandwidth = 48000;
welcometext = "Welcome to uMurmur!";
certificate = "/usr/local/umurmur/var/umurmur.crt";
private_key = "/usr/local/umurmur/var/umurmur.key";
password = "";
# admin_password = "test"; # Set to enable admin functionality.
# ban_length = 0; # Length in seconds for a ban. Default is 0. 0 = fo rever.
# enable_ban = false; # Default is false
# banfile = "/usr/local/umurmur/var/banfile.txt"; # File to save bans to. Defa ult is to not save bans to file.
# sync_banfile = false; # Keep banfile synced. Default is false, which mean s it is saved to at shutdown only.
# allow_textmessage = true; # Default is true
max_users = 10;
# bindport = 64738;
# bindaddr = "192.168.1.1";
# username and groupname for privilege dropping.
# Will attempt to switch user if set.
username = "nobody";
# If groupname not set the user's default login group will be used
groupname = "nobody";
# Log to file option. Default is logging to syslog.
# umurmurd will close and reopen the logfile if SIGHUP is received.
logfile = "/usr/local/umurmur/var/umurmurd.log";
# Channel tree definition:
# Root channel must always be defined first.
# If a channel has a parent, the parent must be defined before the child channel (s).
channels = ( {
name = "Root";
parent = "";
description = "Root channel. No entry.";
noenter = true;
},
{
name = "Lobby";
parent = "Root";
description = "Lobby channel";
},
{
name = "Red team";
parent = "Lobby";
description = "The Red team channel";
# password = "redpw";
},
{
name = "Blue team";
parent = "Lobby";
description = "The Blue team channel";
# password = "bluepw";
}
);
# Channel links configuration.
channel_links = ( {
source = "Lobby";
destination = "Red team";
},
{
source = "Lobby";
destination = "Blue team";
}
);
# The channel in which users will appear in when connecting.
# Note that default channel can't have 'noenter = true' or password set
default_channel = "Lobby";
DiskStation>