Để bắt đầu, chúng tôi sẽ giới thiệu các câu lệnh server core liên quan tới Networking and Firewall trên Server Core. Để cấu hình địa chỉ IP bạn sẽ phải nhớ đến lệnh ” Netsh “. Trong ví dụ này, chúng tôi sử dụng tên mạng là “Local Area Connection”, nếu bạn đã đổi tên mới cho kết nối của mình, hãy sử dụng tên đó để thay thế vào trong ví dụ này.
Lệnh cấu hình IP tĩnh trên Server Core:
Netsh int ipv4 set address Local Area Connection static 10.1.1.10 255.255.255.0 10.1.1.1
Netsh int ipv4 set dnsserver Local Area Connection static 10.1.1.5 primary
Netsh int ipv4 set winsserver Local Area Connection static 10.1.1.6 primary
Lệnh cấu hình IP động (DHCP) trên Server Core:
Netsh int ipv4 set address Local Area Connection source=dhcp
Lệnh thay đổi tên giao diện mạng trên Server Core:
Netsh int set interface name = Local Area Connection newname = Primary Network
Windows Firewall là một thành phần khá phức tạp trên hệ thống window, nó là thành phần không thể thiếu đối với adminstrator để bảo mật mạng nhưng đôi khi lại gây phức tạp cho những người không biết sử dụng. Dù thế nào đi nữa thì nó lại là thành phần được cài đặt mặc định và nếu bạn muốn vô hiệu hóa nó thì phải can thiệp bằng lệnh
netsh firewall set opmode disable
Window Server Core có thể được quản lý từ xa bằng công cụ MMCs. Tuy nhiên, với Firewall được bật mặc định thì bạn sẽ phải được sự cho phép của công cụ này mới có thể kết nối từ xa. Điều cần lưu ý đầu tiên ở đây là làm thế nào để dịch MMC Snap-in sang Windows Firewall Rule Group.
Event Viewer -> Windows Firewall Rule Group – Remote Event Log Management
Services -> Windows Firewall Rule Group – Remote Services Management
Shared Folders -> Windows Firewall Rule Group – File and Printer Sharing
Task Scheduler -> Windows Firewall Rule Group – Remote Scheduled Tasks Management
Reliability and Performance -> Windows Firewall Rule Group – Performance Logs and Alerts and Windows Firewall Rule Group -> File and Printer Sharing
Disk Management -> Windows Firewall Rule Group – Remote Volume Management
Windows Firewall with Advanced Security -> Windows Firewall Rule Group – Windows Firewall Remote Management
Sử đụng câu lệnh để kích hoạt toàn bộ các câu lệnh trên
Netsh advfirewall firewall set rule group=remote administration new enable=yes.
Công Nghệ CIT chúc các bạn thành công!!