Conserver gồm 2 thành phần (xem tài liệu hướng dẫn chi tiết: http://www.conserver.com/consoles/Training/published.html):
- Server (conserver): chạy trên máy kết nối với thiết bị console (vd cổng serial) hoặc nối tới Terminal server (thiết bị mắc tiền - vd như Digiport, Cylades). Server mặc định listen trên port 782/tcp để client kết nối tới
- Client (console): chạy trên máy client bất kỳ, kết nối tới server qua mạng IP, sau đó gắn vào một trong các console để điều khiển
--- /etc/conserver.cf ---
default tty {
type device;
baud 9600;
parity none;
protocol raw;
}
default * {
logfile /var/log/consoles/&; # '&' is replaced with console name
timestamp 1ha; # write timestamps
rw *; # allow all users
master localhost; # this server
}
console sun1 {
device /dev/ttyS0; motd "SUN server 01 console";
include tty;
}
access * {
trusted 127.0.0.1;
trusted 192.168.1.0/24;
}
--- end of /etc/conserver.cf ---
- Phía server: start conserver
# /etc/init.d/conserver start - Phía client: chạy console để kết nối tới server
liệt kê các console trên server và xem trạng thái của chúng:$ console -M <server_name/ip> -u
kết nối tới console của Sun server 01:
$ console -M 192.168.0.1 -u
sun1 up <none>$ console -M 192.168.0.1 sun1
kết thúc phiên làm việc và ngắt kết nối:
[Enter `^Ec?' for help]
[-- MOTD -- SUN server 01 console]
server01 console login:Nhấn phím chuỗi phím: Ctrl+E, c, . (^Ec.)
Lưu ý: nếu muốn "phức tạp" hơn thì xem thêm phần thiết lập quyền access cho user/goup, đặt mật khẩu, cấu hình cho nhiều server dạng phân bố, ...
No comments:
Post a Comment