FTP banner 변경하기
1) locale에 en_US 확인
# locale -a
C
POSIX
KO_KR.UTF-8
KO_KR
en_US.8859-15
en_US.ISO8859-1
en_US
ko_KR.IBM-eucKR
ko_KR
2) en_US가 정상적으로 보이면 아래 내용 확인
>>> add following in /etc/environment
LANG=en_US
LC_ALL=en_US
# grep en_US /etc/environment
LANG=en_US
LC_ALL=en_US
3) FTP는 기존 시스템에 설치된 환경에 따라 ftpd.cat 파일의 위치가 다를 수 있으니 find를 통해 먼저 ftpd.cat 파일 찾기
# find /usr –name "ftpd.cat"
4) ftpd.cat 파일 수정
# dspcat -g /usr/lib/nls/msg/en_US/ftpd.cat > /tmp/ftpd.msg
# vi /tmp/ftpd.msg
"%s FTP Server (%s) ready." 라인(9번째 라인 수정)에서 버전 정보 표시하는 “(%s)”를 제거하거나,
또는
"%s Authorized users only." 와 같이 문구를 변경해 주면 된다.
# gencat /tmp/ftpd.cat /tmp/ftpd.msg
# mv ftpd.cat /usr/lib/nls/msg/en_US/ftpd.cat
# chown bin.bin /usr/lib/nls/msg/en_US/ftpd.cat
# stopsrc –s inetd
# startsrc –s inetd
'욕심쟁이 공부방 > AIX' 카테고리의 다른 글
tcpdump 사용법 (0) | 2018.11.26 |
---|---|
rpc.rstatd (0) | 2018.11.26 |
fcstat / No Command Resource Count (0) | 2018.11.26 |
HMC / properties 항목 (0) | 2018.11.22 |
Power Saving Mode (0) | 2018.11.22 |