새로운 공간

ASA 본문

네트워크/네트워크 관제

ASA

jin._. 2023. 8. 8. 11:31

 

 

기존 ASDM 이미지 삭제

del flash:/ asdm-792-152.bin

 

tftp 서버로 부터 ASA 방화벽으로 asdm 이미지를 복사해보자!!!

> copy tftp://192.168.56.12/asdm-792-152.bin flash:/asdm-792-152.bin

그럼 다시 삭제하고

반대로 ASA 방화벽에서 tftp 서버로 이미지를 복사해보자

> copy tftp://192.168.56.12/asdm-792-152.bin flash:/asdm-792-152.bin

 

<centos7>

yum install tftp-server xinetd

xinetd의 tftp 설정확인.(기본 tftp root 디렉토리를 변경하려면, 아래 14번 줄의 /var/lib/tftpboot를 변경하면된다.)

 

# cat /etc/xinetd.d/tftp
# default: off
# description: The tftp server serves files using the trivial file transfer \
#       protocol.  The tftp protocol is often used to boot diskless \
#       workstations, download configuration files to network-aware printers, \
#       and to start the installation process for some operating systems.
service tftp
{
        socket_type             = dgram
        protocol                = udp
        wait                    = yes
        user                    = root
        server                  = /usr/sbin/in.tftpd
        server_args             = -s /var/lib/tftpboot
        disable                 = yes
        per_source              = 11
        cps                     = 100 2
        flags                   = IPv4
}

 

<실습과제>

Router에는 kron 이라는 서비스가 있다.

 

 

 

ASA 방화벽에 ASDM 이미지를 복사 했다.

ASDM : Cisco Adaptive Security Device Manager

웹 (java) 기반 : ASA에 대한 GUI 환경을 제공한다,

(Jre 설치 필수)

 

ASA 방화벽에서 ASDM 이미지를 등록

conf t

asdm image flash:/asdm-792-152.bin

 

ASA 방화벽의 웹서버를 활성화

conf t

http server enable

 

웹서버에 대한 접근 허용

conf t

http 192.168.56.0 255.255.255.0 Management

 

 

관리자 계정이 필요

useranem jin password cisco privilege 15

 

 

클라이언트 설정

jre가 설치되어 있어야함.

브라우저를이용해 ada 방화벽에 접근

라우터 ip를 이용하여 win10에 입력

https://192.168.56.10  

 

install A SDN Launcher 클릭

 

 

'네트워크 > 네트워크 관제' 카테고리의 다른 글

관제시스템_SNMP_ESM  (0) 2023.08.09