안녕하세요? rb450g사용자 입니다. IPtime제품 판매하고 이제품을 주력으로 쓰려고 합니다.
WOL기능과 외부에서 WinBox 접속을 하고 싶은데요..
1. WOL기능은 아래처럼 설정했는데 안됩니다. 스마트폰 WOL어플로 신호를 보내면 N40L MicroServer NIC램프가 그냥 한번 깜박이기만 하고 부팅은 되지 않는데요.. 왜 그런건지 모르겠습니다.
example LAN segment is: 192.168.1.0/24
create static arp entry to resolve IP -> broadcast
Code:
/ip arp add address=192.168.1.254 comment="" disabled=no interface=LAN mac-address=FF:FF:FF:FF:FF:FF
create a NAT rule to forward packet on specific to this IP (effectively sending it to broadcast MAC)
Code:
/ip firewall nat add chain=dstnat action=dst-nat to-addresses=192.168.1.254 to-ports=7 protocol=udp dst-port=7000
2. 그리고 외부에서 winbox나 web winbox를 접속하고 싶어서 다음과 같이 설정했습니다. 그런데 작동하지 않습니다..
create an Input rule to allow Port 8291 from the internet.
/ip firewall filter add action=accept chain=input disabled=no dst-port=8291 protocol=tcp
참고 스샷..
조언 부탁 드려도 될까요..
감사합니다!
2. 방화벽 정책에 input / tcp / 8291 /in interface accept룰 지정하시고 2번과 4번 룰 사이에 끼워넣어주세요
/ip firewall filter
add chain=input dst-port=8291 in-interface=ether1-gateway protocol=tcp
[admin@MikroTik] > tool wol interface=ether2-master-local mac=44:1e:xx:xx:xx:xx
2. 이미 추가되어져 있습니다. 다시 추가해도 그렇네요.. export 결과는 아래와 같습니다.. system reset한 후 해도 그렇네요..ㅠㅠ 즐거운 주말 되세요~
[admin@MikroTik] > ip firewall filter export
# mar/07/2015 12:06:14 by RouterOS 6.27
#
/ip firewall filter
add chain=input comment="default configuration" protocol=icmp
add chain=input comment="default configuration" connection-state=established,related
add action=drop chain=input comment="default configuration" in-interface=ether1-gateway
add chain=input dst-port=8291 in-interface=ether1-gateway protocol=tcp
add chain=forward comment="default configuration" connection-state=established,related
add action=drop chain=forward comment="default configuration" connection-state=invalid
add action=drop chain=forward comment="default configuration" connection-nat-state=!dstnat connection-state=new in-interface=\
ether1-gateway
WinPE로 부팅 후 장치관리자에서 인식한 NIC에 고급정보에 WOL값을 Disable한 후 다시 Enable한 후 재부팅.
감사합니다!!