CLI를 사용하여 vSRX 가상 방화벽 인스턴스를 구성하려면,
- vSRX 가상 방화벽 전원이 켜지는지 확인합니다.
- 루트 사용자로 로그인합니다. 암호가 없습니다.
- CLI를 시작합니다.
- 구성 모드를 입력합니다.
- 일반 텍스트 암호, 암호화된 암호 또는 SSH 공개 키 문자열(DSA 또는 RSA)을 입력하여 루트 인증 비밀번호를 설정합니다.
[edit]
root@# set system root-authentication plain-text-password
New password: password
Retype new password: password
- 호스트 이름을 구성합니다.
[edit]
root@# set system host-name host-name
- 관리 인터페이스를 구성합니다.
[edit]
root@# set interfaces fxp0 unit 0 family inet dhcp-client
- 트래픽 인터페이스를 구성합니다.
[edit]
root@# set interfaces ge-0/0/0 unit 0 family inet dhcp-client
- 기본 보안 영역을 구성하고 트래픽 인터페이스에 바인딩합니다.
[edit]
root@# set security zones security-zone trust interfaces ge-0/0/0.0
- 구성을 확인합니다.
[edit]
root@# commit check
configuration check succeeds
- 구성을 커밋하여 vSRX 가상 방화벽 인스턴스에서 활성화합니다.
[edit]
root@# commit
commit complete
- 선택적으로 명령을 사용하여
show
구성을 표시하여 올바른지 확인합니다.