"CLI - Hostname"의 두 판 사이의 차이

잔글 (Kang님이 호스트 이름 설정 문서를 CLI - 호스트 이름 설정 문서로 이동했습니다)
 
(같은 사용자의 중간 판 2개는 보이지 않습니다)
1번째 줄: 1번째 줄:
호스트 이름 설정은 configure 명령어에서 설정할 수 있습니다.
+
호스트 이름 설정은 configuration mode에서 설정할 수 있으며 user mode에서 <code>show system hostname</code>명령어를 실행하면 현재 이름을 확인 할 수 있습니다.<br>
 +
또한, 호스트 이름을 변경하면 user mode의 프롬프트가 변경된 호스트이름으로 적용됩니다.
 
<pre>
 
<pre>
 +
LYSH@MyHostName# show system hostname
 +
Hostname                      : MyHostName
 +
 
LYSH@MyHostName# configure
 
LYSH@MyHostName# configure
configure# hostname set -h
+
LYSH@MyHostName(config)# hostname set NewHostName
usage: hostname set [-h] name
+
LYSH@NewHostName# show system hostname
 
+
Hostname                      : NewHostName
positional arguments:
 
  name        hostname
 
  
optional arguments:
 
  -h, --help  show this help message and exit
 
 
</pre>
 
</pre>
=== Basic Commands ===
 
* <code>configure# hostname set MyHostName</code> 호스트 이름을 설정합니다.
 

2022년 1월 28일 (금) 10:31 기준 최신판

호스트 이름 설정은 configuration mode에서 설정할 수 있으며 user mode에서 show system hostname명령어를 실행하면 현재 이름을 확인 할 수 있습니다.
또한, 호스트 이름을 변경하면 user mode의 프롬프트가 변경된 호스트이름으로 적용됩니다.

LYSH@MyHostName# show system hostname
Hostname                      : MyHostName

LYSH@MyHostName# configure
LYSH@MyHostName(config)# hostname set NewHostName
LYSH@NewHostName# show system hostname
Hostname                      : NewHostName