로컬에서 백업하여 원격으로 바로 옮기는 경우
tar cvfzp - /home | ssh taejun "cat > home.tgz"
tar cvfzp - /home | ssh taejun "cat > /dev/tape"

tar cvfzp - apache | ssh taejun "cd /usr/local; mv apache apache.bak; tar xvfzp -"

ssh taejun "cd /usr/local/test; tar xvfzp -" < my.tgz
ssh taejun" cat my.tgz" | tar xvfzp -

'Server' 카테고리의 다른 글

HTTP Error Code  (0) 2017.01.06
FTP vs NTFS  (0) 2017.01.06
ftp를 이용한 Network 백업  (0) 2017.01.06
쉘에서 PATH 보이기  (0) 2017.01.06
Telnet, Ssh 특정 계정 접속 못하게 하기  (0) 2017.01.06

vi 에디터 사용시 윈도우에서 작업한 파일에 ^M 문자가 붙는경우가 있습니다.
정말 귀찮기 짝이 없죠. 아래 방법을 참고하시기 바랍니다. KLDP에서 퍼왔습니다.

1. vi(m)이 열린 상태 
1.1 문자 치환 명령 이용
다음과 같이 문자 치환 명령으로 이 문자를 없애도록 합니다. 
:1,$s/^M//g

물론 이것의 입력은 다음과 같이 하도록 합니다.
:1,$s/[Control]+v+m을 누른다.//g

1.2 파일포맷 변경 
vim 5.0 이상에서는 다음과 같이 명령을 내리도록 합니다

:set fileformat=unix
혹은
:set ff=unix
그리고, 저장하고 종료합니다.
:wq

이와 반대로 끝에 ^M붙이려면 다음과 같이 합니다.
:set fileformat=dos

이전버전에서는 다음과 같이 합니다.
:set textmode 


2. 프롬프트 상에서
2.1 dos2unix 이용
dos2unix와 unix2dos를 이용하여 변환할 수 있습니다.

다음과 같이 하면 ^M 문자가 없어집니다.
$ dos2unix [문서명](여러 파일의 경우 *.확장자)

그리고 다음과 같이 하면 ^M 문자가 생기죠.
$ unix2dos [문서명]

2.2 cat과 tr을 이용한 방법
다음과 같이 하면 해당 파일의 ^M 문자가 없어집니다.
$ cat dos-file | tr -d ^M > unix-file

2.3 perl 스크립트 
다음과 같이 하면 여러파일을 한번에 바꾸게 됩니다.

# perl -i -pe 's/\015//g' *.html

3. 다른 에디터의 사용 
pico 라는 에디터 아실겁니다. 기능은 별로 없지만 빠르고 간편하죠.
vi나 emacs에서 ^M으로 잡히는 것이 pico에서는 안 잡히는데,
파일을 pico로 열어서 다시 이 문서를 저장합니다. 
그리고 vi나 emacs로 읽으면 ^M이 모두 없어진 것을 알 수 있습니다.

4. man 페이지의 ^M, ^H 문자 
man 페이지를 일반 화일로 바꾸면 ^M, ^H 등이 생기는데(예, 한컴리눅스 ^H)
다음과 같이 하면 이 문자를 없애고 볼 수 있습니다. 
다음은 ls의 예입니다.

4.1 ps 또는 pdf로 변환하기
man -t 변경 시킬 화일 > 변경후 화일명.ps
man -t 변경 시킬 화일 > 변경후 화일명.pdf
예)
man -t ls > ls.ps 또는 ls.pdf로 보시면 됩니다.

4.2 텍스로 변환하기
man 변환시킬화일 | col -b> 변환후 화일명.txt
예)
man ls | col -b > ls.txt

'Coding' 카테고리의 다른 글

색을 랜덤하게 뽑아서 출력합니다.  (0) 2017.01.07
php predefined variables  (0) 2017.01.06
주민번호 생성원리  (0) 2017.01.06
CGI Setting  (0) 2017.01.06
쉘프로그래밍 문법  (0) 2017.01.06

#!/bin/sh

################# 개요 ##################
# 인자로 들어온 server1의 특정 db를 백업한다
# 인자가 생략되면 db1 이다.
# split로 분할 압축후 server2의 /home/myid/db_backup 에 ftp로 전송한다
# 파일명 : "db명"_"날짜"_"aa" , "ab" ...
######################################

############### 필요한 변수들 #############
# host : 백업될 서버
# username : ftp로 접속할 id
# password : 비번
# db_name : server1의 db명
# mysql_dir : mysql 데이터 디렉토리
# backup_dir : server1의 분할압축된 파일이 놓일 임시 디렉토리
# today_date : 오늘날짜 (파일명에 사용됨)
# size : 한 조각의 크기
#####################################
host="server2.test.com"
username="myid"
password="mypasswd"
db_name=${1:-db1}
mysql_dir="/home/mysql/data/"
backup_dir="/tmp/pieces/"
today_date=`date +%Y%m%d`
size="650m"

# 기존에 만들어진 파일들을 없앤다
# /tmp/pieces 로 이동후 원하는 db 디렉토리를 분할압축 한다.
# ftp로 server2 의 /home/foremost/db_backup 으로 옮긴다.

echo "[`date +%Y-%m-%d\ %T`] $db_name backup Start !!!"
if [ -d "$backup_dir" ]; then
rm -f ${backup_dir}*
fi

cd $backup_dir
tar cf - ${mysql_dir}${db_name} | bzip2 -c | split -b $size - ${db_name}_${today_date}_

{
echo user $username $password
echo cd /home/myid/db_backup
echo lcd /tmp/pieces
echo prompt
echo mput *
echo quit
} | ftp -n $host 21

echo "[`date +%Y-%m-%d\ %T`] $db_name backup End !!!"
exit 0


# 1G 용량의 db를 백업하는데 약 20여분이 소요되더군요.
# bzip2 대신 gzip을 사용하면 좀더 빨라지지 않을까 싶습니다.

// kltp.kldp.org

'Server' 카테고리의 다른 글

FTP vs NTFS  (0) 2017.01.06
ssh 이용하여 tar 로 원격 백업하기  (0) 2017.01.06
쉘에서 PATH 보이기  (0) 2017.01.06
Telnet, Ssh 특정 계정 접속 못하게 하기  (0) 2017.01.06
쉘다루기/쉘의 종류  (0) 2017.01.06

/root아래에 backup.sh 이라는 파일을 만들어 놓고 백업 명령어를 다음과 같이 주었다.

#!/bin/bash
/usr/local/mysql/bin/mysqldump -uroot -p***** mysql > mysql_db_bak_$(date +%Y%m%d).sql
/usr/local/mysql/bin/mysqldump -uyanemone -p***** yanemone > yanemone_db_bak_$(date +%Y%m%d).sql
mv *.sql /backup
tar cvfpz /backup/html_bak.tar.gz /var/www/html
tar cvfpz /backup/yanemone_html_bak.tar.gz /home/yanemone/public_html
tar cvfpz /backup/dichang_html_bak.tar.gz /home/dichang/public_html

백업할 내용이라던지 파일 이름은 자신의 상황에 맞게 주면 되겠다.

이렇게 하고 나면 backup.sh파일을 chmod 100 backup.sh로 단단히 무장하라.

그리고 crontab -e 명령으로 cron 작업을 명시하자
그럼 vi가 열리면서 편집이 가능하다

00 06 * * * /root/backup.sh

를 추가하고 :x 로 저장하고 나오자.
위의 작업은 매일 새벽 6시에 /root/backup.sh을 실행하라 라는 말이다.

그리고 /var/spool/cron/root가 있는지 확인해보자. 있다면 정상적으로 수행할 것이다.

*************************************************************************************
팁팁팁
이렇게 하면 cron의 결과를 cron 데몬이 root에게 친절하게도 메일을 자꾸 날려준다. (x10)
정말 귀찮고 용량도 만만치 않다.
안오게 할 수 있다.

/etc/crontab이라는 파일을 열어보자
SHELL=/bin/bash
PATH=/sbin:/bin:/usr/sbin:/usr/bin
MAILTO=ROOT
HOME=/

부분이 있다. MAILTO=ROOT를 다음과 같이 고쳐보자
MAILTO=""
************************************************************************************

크론에 등록시 아래와 같이 하면 메일이 날아오지 않는다.
위에꺼는 전체 메일이 다 날아오지 않으므로 주의 해야 한다.
그러므로 아래꺼 사용하믄 된당...
00 06 * * * /root/backup.sh >/dev/null 2>&1 


************************************************************************************
추가팁 저장할 파일의 크기가 클경우 분할하여 압축할수 있다.
백업을 하다보면 기가단위가 넘을때가 많습니다.
그때는 분할백업(CD 1장 단위가 좋겠죠...)
tar -zcvpf - /압축할dir | split -b 670mb - 압축파일.tar.gz 

그러면 압축파일.tar.gzaa 
압축파일.tar.gzab순으로 파일이 생깁니다. 

-b 670mb는 압축파일을 670mb단위로 분할 하라는 옵션입니다. 

압축풀라고 할때는 (쿠쿠 바로 답해 주셔서 캄솨함다.)
cat test.tar.gza* > test.tar.gz
로 하여 tar.gz파일로 만들어서 풀면 된다.
***********************************************************************************

***********************************************************************************
삼바로 마우트한 윈도우즈 백업서버에 데이터 저장
mount -t smbfs -o username=윈도우계정아이디,password=윈도우패스워드 //서버이름/backup /backup
***********************************************************************************

#!/bin/bash 
BACKUP_DIR=/var/backup 
FILE_PFX =MY_DB 

DATE=$(date +%Y%m%d) 
OF = $FILE_PFX-$DATE.sql 
rm -rf $BACKUP_DIR/$FILE_PFX-*.sql 

mysqldump -uUSER -pPASS DB_NAME > $BACKUP_DIR/$OF 

'Tip' 카테고리의 다른 글

이메일 체크 함수  (0) 2017.01.06
ubuntu 메일 보내기  (0) 2017.01.06
host 커맨드를 이용해 특정 도메인의 메일서버 알아내기  (0) 2017.01.06
Linux cpu, mem 등 확인하기  (0) 2017.01.06
mutt 메일 보내기  (0) 2017.01.06

[iz4u@junghyun ~]$cat .bash_profile 
# .bash_profile 

# Get the aliases and functions 
if [ -f ~/.bashrc ]; then 
. ~/.bashrc 
fi 

# User specific environment and startup programs 

export PS1='[\h@\u \w]$' <--이 부분을 추가 
PATH=$PATH:$HOME/bin 

export PATH 
unset USERNAME 
[iz4u@junghyun ~]$ 

\h : 호스트 
\u : 계정아이디 
\w : 경로명 

pwd 처도 볼수 있지만...... 
[iz4u@junghyun ~]$cd public_html/ 
[iz4u@junghyun ~/public_html]$cd board/ 
[iz4u@junghyun ~/public_html/board]$cd include/ 
[iz4u@junghyun ~/public_html/board/include]$

참고 1 :
# .bash_profile 
# 제 .bash_profile 입니다. 
# 주석을 달아 놓았으니 튜닝해서 쓰세요. 

# Get the aliases and functions 
# 사용자 정의 알리어스와 함수 정의 포함 
#if [ -f ~/.bashrc ]; then 
. ~/.bashrc 
#fi 

# User specific environment and startup programs 
# 사용자별 환경 변수, 시작 프로그램 설정 

PATH=$PATH:$HOME/bin 
BASH_ENV=$HOME/.bashrc 
USERNAME="Christian Junguhn Hwang" 


# PS1##################################################################### 
# These comments are for the environmental variables of PS1 
# a: idk s: show the name of this shell 
# d: show date informations t: show time as 24 hours 
# e: hostname u: show id 
# j: idk v: show the version of this shell maybe 
# l: show the number of the konsoles w: show the absolutely path 
# n: idk 
# H: show the name of host and domain V: show the version 
# T: show time as 12 hours W: show the name of current path 
# this is my shell program for PS1 from here ############################# 
hour=`date | cut -f4 -d' ' | cut -f1 -d:` 
#time=`date | cut -f4 -d' ' 
if [ $hour -gt 12 ]; then 
PS1='[Joobaragy@\u \t PM] ' 
else 
PS1='[Joobaragy@\u \t AM] ' 
fi ############################# this is the end of my shell program for PS1 

export USERNAME BASH_ENV PATH PS1

// 해커즈뉴스

'Server' 카테고리의 다른 글

ssh 이용하여 tar 로 원격 백업하기  (0) 2017.01.06
ftp를 이용한 Network 백업  (0) 2017.01.06
Telnet, Ssh 특정 계정 접속 못하게 하기  (0) 2017.01.06
쉘다루기/쉘의 종류  (0) 2017.01.06
DISK Quota 설정하기  (0) 2017.01.06
LISTEN : 서버의 데몬이 떠서 접속 요청을 기다리는 상태 

SYS-SENT : 로컬의 클라이언트 애플리케이션이 원격 호스트에 연결을 요청한 상태 

SYS-RECEIVED : 서버가 클라이언트로 부터 접속 요구를 받아 클라이언트에게 응답을 했지만 아직 클라이언트에게 확인 메세지는 받지 않은 상태 

ESTALISHED : 3-way-Handshaking 이 완료된후 서로 연결된 상태 

FIN-WAIT, CLOSE-WAIT, FIN-WAIT2 : 서버에서 연결을 종료하기 위해 클라이언트에게 종결을 요청하고 회신을 받아 종료하는 과정의 상태 

CLOSING : 흔하지 않지만 주로 확인 메세지가 존송 도중 분실된 상태 

TIME-WAIT : 연결은 종료 되었지만 분실되었을지 모를 느린 세그먼트를 위해 당분간 소켓을 열어 놓은 상태 

CLOSED : 완전히 종료



host -t mx hanmail.net 

[root@localhost ~]$ host -t mx daum.net 
daum.net. mail is handled by 10 mx1.hanmail.net. 
daum.net. mail is handled by 10 mx2.hanmail.net. 
daum.net. mail is handled by 10 mx3.hanmail.net. 
daum.net. mail is handled by 10 mx4.hanmail.net. 
daum.net. mail is handled by 10 mx5.hanmail.net. 
daum.net. mail is handled by 10 mx6.hanmail.net. 
daum.net. mail is handled by 10 mx7.hanmail.net. 
daum.net. mail is handled by 10 mx8.hanmail.net. 
daum.net. mail is handled by 10 mx9.hanmail.net. 
daum.net. mail is handled by 10 mx10.hanmail.net. 

'Tip' 카테고리의 다른 글

ubuntu 메일 보내기  (0) 2017.01.06
mysql backup  (0) 2017.01.06
Linux cpu, mem 등 확인하기  (0) 2017.01.06
mutt 메일 보내기  (0) 2017.01.06
TCP 연결수 확인 스크립트  (0) 2017.01.06
동안 텔넷 접속을 계정 별로 막을 수 있는 방법이 딱히 없었다. 
그런 의미에서 아래 방법은 정말로 반가운 일이다. 
호스팅 업계에서는 유용하게 사용될 것으로 생각된다. 

Proftpd 보면 /etc/proftpd/conf/ftpusers 파일이 있을것이다. 

ftpusers 파일 안에 있는 계정은 FTP로 접근 못한다. 이걸 텔넷이나 ssh에 응용하면 된다. 

/etc/pam.d/ftp 에 보면 

auth required /lib/security/pam_listfile.so item=user sense=deny file=/etc/proftpd/conf/ftpusers onerr=succeed 
이렇게 있을 것이다. 위 라인이 없다면 추가한다. 

file=... 이 부부만 수정해 주면 된다. 

1.텔넷을 막고 싶으면 

/etc/pam.d/login 

auth required /lib/security/pam_listfile.so item=user sense=deny file=/etc/loginusers onerr=succeed 
위 라인이 없다면 추가한다. 
/etc/loginusers 파일을 만들어서 계정을 넣어주면 된다. 

2.ssh 도 할수 있다. 

/etc/pam.d/ssh 

auth required /lib/security/pam_listfile.so item=user sense=deny file=/etc/ssh/sshusers onerr=succeed 

이렇게 설정해주고 계정을 집어 넣으면 된다..... 


'Server' 카테고리의 다른 글

ftp를 이용한 Network 백업  (0) 2017.01.06
쉘에서 PATH 보이기  (0) 2017.01.06
쉘다루기/쉘의 종류  (0) 2017.01.06
DISK Quota 설정하기  (0) 2017.01.06
httpd.conf  (0) 2017.01.06

[GenPorts]
1=TCP Port Service Multiplexer
2=TCP/UDP Management Utility
3=TCP/UDP Compression Process
5=TCP/UDP Remote Job Entry
7=TCP/UDP Echo
11=TCP/UDP Systat Active Users
13=TCP/UDP Daytime
17=TCP/UDP Quote of the Day
18=TCP/UDP Message Send Protocol
19=TCP/UDP Character Generator
20=TCP/UDP File Transfer [Default Data]
21=TCP/UDP File Transfer [Control]
22=TCP/UDP SSH Remote Login Protocol
23=TCP/UDP Telnet
25=TCP/UDP Simple Mail Transfer
27=TCP/UDP NSW User System FE
29=TCP/UDP MSG ICP
31=TCP/UDP MSG Authentication
33=TCP/UDP Display Support Protocol
37=TCP/UDP Time
38=TCP/UDP Route Access Protocol
39=TCP/UDP Resource Location Protocol
41=TCP/UDP Graphics
42=TCP/UDP Host Name Server
43=TCP/UDP WhoIs
44=TCP/UDP MPM FLAGS Protocol
45=TCP/UDP Message Processing Module [recv]
46=TCP/UDP MPM [default send]
47=TCP/UDP NI FTP
48=TCP/UDP Digital Audit Daemon
49=TCP/UDP Login Host Protocol (TACACS)
50=TCP/UDP Remote Mail Checking Protocol
51=TCP/UDP IMP Logical Address Maintenance
52=TCP/UDP XNS Time Protocol
53=TCP/UDP Domain Name Server
54=TCP/UDP XNS Clearinghouse
55=TCP/UDP ISI Graphics Language
56=TCP/UDP XNS Authentication
58=TCP/UDP XNS Mail
61=TCP/UDP NI MAIL
62=TCP/UDP ACA Services
63=TCP/UDP whois++
64=TCP/UDP Communications Integrator (CI)
65=TCP/UDP TACACS-Database Service
66=TCP/UDP Oracle SQL*NET
67=TCP/UDP Bootstrap Protocol Server
68=TCP/UDP Bootstrap Protocol Client
69=TCP/UDP Trivial File Transfer
70=TCP/UDP Gopher
71=TCP/UDP Remote Job Service
72=TCP/UDP Remote Job Service
73=TCP/UDP Remote Job Service
74=TCP/UDP Remote Job Service
76=TCP/UDP Distributed External Object Store
78=TCP/UDP vetTCP
79=TCP/UDP Finger
80=TCP/UDP World Wide Web HTTP
81=TCP/UDP HOSTS2 Name Server
82=TCP/UDP XFER Utility
83=TCP/UDP MIT ML Device
84=TCP/UDP Common Trace Facility
85=TCP/UDP MIT ML Device
86=TCP/UDP Micro Focus Cobol
88=TCP/UDP Kerberos
89=TCP/UDP SU=MIT Telnet Gateway
90=TCP/UDP DNSIX Securit Attribute Token Map
91=TCP/UDP MIT Dover Spooler
92=TCP/UDP Network Printing Protocol
93=TCP/UDP Device Control Protocol
94=TCP/UDP Tivoli Object Dispatcher
95=TCP/UDP SUPDUP
96=TCP/UDP DIXIE Protocol Specification
97=TCP/UDP Swift Remote Virtural File Protocol
98=TCP/UDP TAC News
99=TCP/UDP Metagram Relay
101=TCP/UDP NIC Host Name Server
102=TCP/UDP ISO-TSAP Class 0
103=TCP/UDP Genesis Point-to-Point Trans Net
104=TCP/UDP ACR-NEMA Digital Imag. & Comm. 300
105=TCP/UDP CCSO name server protocol, Mailbox Name Nameserver
106=TCP/UDP 3COM-TSMUX
107=TCP/UDP Remote Telnet Service
108=TCP/UDP SNA Gateway Access Server
109=TCP/UDP Post Office Protocol - Version 2
110=TCP/UDP Post Office Protocol - Version 3
111=TCP/UDP SUN Remote Procedure Call
112=TCP/UDP McIDAS Data Transmission Protocol
113=TCP/UDP Authentication Service, Ident
114=TCP/UDP Audio News Multicast
115=TCP/UDP Simple File Transfer Protocol
116=TCP/UDP ANSA REX Notify
117=TCP/UDP UUCP Path Service
118=TCP/UDP SQL Services
119=TCP/UDP Network News Transfer Protocol
120=TCP/UDP CFDPTKT
121=TCP/UDP Encore Expedited Remote Pro.Call
122=TCP/UDP SMAKYNET
123=TCP/UDP Network Time Protocol
124=TCP/UDP ANSA REX Trader
125=TCP/UDP Locus PC-Interface Net Map Ser
126=TCP/UDP Unisys Unitary Login
127=TCP/UDP Locus PC-Interface Conn Server
128=TCP/UDP GSS X License Verification
129=TCP/UDP Password Generator Protocol
130=TCP/UDP cisco FNATIVE
131=TCP/UDP cisco TNATIVE
132=TCP/UDP cisco SYSMAINT
133=TCP/UDP Statistics Service
134=TCP/UDP INGRES-NET Service
135=TCP/UDP DCE endpoint resolution
136=TCP/UDP PROFILE Naming System
137=TCP/UDP NETBIOS Name Service
138=TCP/UDP NETBIOS Datagram Service
139=TCP/UDP NETBIOS Session Service
140=TCP/UDP EMFIS Data Service
141=TCP/UDP EMFIS Control Service
142=TCP/UDP Britton-Lee IDM
143=TCP/UDP Internet Message Access Protocol
144=TCP/UDP NewS
145=TCP/UDP UAAC Protocol
146=TCP/UDP ISO-IP0
147=TCP/UDP ISO-IP
148=TCP/UDP Jargon
149=TCP/UDP AED 512 Emulation Service
150=TCP/UDP SQL-NET
151=TCP/UDP HEMS
152=TCP/UDP Background File Transfer Program
153=TCP/UDP SGMP
154=TCP/UDP NETSC
155=TCP/UDP NETSC
156=TCP/UDP SQL Service
157=TCP/UDP KNET=VM Command=Message Protocol
158=TCP/UDP PCMail Server
159=TCP/UDP NSS-Routing
160=TCP/UDP SGMP-TRAPS
161=TCP/UDP SNMP
162=TCP/UDP SNMPTRAP
163=TCP/UDP CMIP=TCP Manager
164=TCP/UDP CMIP=TCP Agent
165=TCP/UDP Xerox
166=TCP/UDP Sirius Systems
167=TCP/UDP NAMP
168=TCP/UDP RSVD
169=TCP/UDP SEND
170=TCP/UDP Network PostScript
171=TCP/UDP Network Innovations Multiplex
172=TCP/UDP Network Innovations CL=1
173=TCP/UDP Xyplex
174=TCP/UDP MAILQ
175=TCP/UDP VMNET
176=TCP/UDP GENRAD-MUX
177=TCP/UDP X Display Manager Control Protocol
178=TCP/UDP NextStep Window Server
179=TCP/UDP Border Gateway Protocol
180=TCP/UDP Intergraph
181=TCP/UDP Unify
182=TCP/UDP Unisys Audit SITP
183=TCP/UDP OCBinder
184=TCP/UDP OCServer
185=TCP/UDP Remote-KIS
186=TCP/UDP KIS Protocol
187=TCP/UDP Application Communication Interface
188=TCP/UDP Plus Five's MUMPS
189=TCP/UDP Queued File Transport
190=TCP/UDP Gateway Access Control Protocol
191=TCP/UDP Prospero Directory Service
192=TCP/UDP OSU Network Monitoring System
193=TCP/UDP Spider Remote Monitoring Protocol
194=TCP/UDP Internet Relay Chat Protocol
195=TCP/UDP DNSIX Network Level Module Audit
196=TCP/UDP DNSIX Session Mgt Module Audit Redir
197=TCP/UDP Directory Location Service
198=TCP/UDP Directory Location Service Monitor
199=TCP/UDP SMUX
200=TCP/UDP IBM System Resource Controller
201=TCP/UDP AppleTalk Routing Maintenance
202=TCP/UDP AppleTalk Name Binding
203=TCP/UDP AppleTalk Unused
204=TCP/UDP AppleTalk Echo
205=TCP/UDP AppleTalk Unused
206=TCP/UDP AppleTalk Zone Information
207=TCP/UDP AppleTalk Unused
208=TCP/UDP AppleTalk Unused
209=TCP/UDP The Quick Mail Transfer Protocol
210=TCP/UDP ANSI Z39.50
211=TCP/UDP Texas Instruments 914C=G Terminal
212=TCP/UDP ATEXSSTR
213=TCP/UDP IPX
214=TCP/UDP VM PWSCS
215=TCP/UDP Insignia Solutions
216=TCP/UDP Computer Associates Int'l License Server
217=TCP/UDP dBASE Unix
218=TCP/UDP Netix Message Posting Protocol
219=TCP/UDP Unisys ARPs
220=TCP/UDP Interactive Mail Access Protocol v3
221=TCP/UDP Berkeley rlogind with SPX auth
222=TCP/UDP Berkeley rshd with SPX auth
223=TCP/UDP Certificate Distribution Center
242=TCP/UDP Direct
243=TCP/UDP Survey Measurement
244=TCP/UDP Dayna
245=TCP/UDP LINK
246=TCP/UDP Display Systems Protocol
247=TCP/UDP SUBNTBCST_TFTP
248=TCP/UDP bhfhs
256=TCP/UDP RAP
257=TCP/UDP Secure Electronic Transaction
258=TCP/UDP Yak Winsock Personal Chat
259=TCP/UDP Efficient Short Remote Operations
260=TCP/UDP Openport
261=TCP/UDP IIOP Name Service over TLS=SSL
262=TCP/UDP Arcisdms
263=TCP/UDP HDAP
280=TCP/UDP http-mgmt
281=TCP/UDP Personal Link
282=TCP/UDP Cable Port A=X
309=TCP/UDP EntrustTime
310=TCP/UDP bhmds
344=TCP/UDP Prospero Data Access Protocol
345=TCP/UDP Perf Analysis Workbench
346=TCP/UDP Zebra server
347=TCP/UDP Fatmen Server
348=TCP/UDP Cabletron Management Protocol
349=TCP/UDP mftp
350=TCP/UDP MATIP Type A
351=TCP/UDP MATIP Type B, bhoetty
352=TCP/UDP DTAG
352=TCP/UDP bhoedap4
354=TCP/UDP bh611
357=TCP/UDP bhevent
368=UDP Wingate 3.0
371=TCP/UDP Clearcase
372=TCP/UDP ListProcessor
373=TCP/UDP Legent Corporation
374=TCP/UDP Legent Corporation
375=TCP/UDP Hassle
376=TCP/UDP Amiga Envoy Network Inquiry Proto
377=TCP/UDP NEC Corporation
378=TCP/UDP NEC Corporation
379=TCP/UDP TIA=EIA=IS-99 modem client
380=TCP/UDP TIA=EIA=IS-99 modem server
381=TCP/UDP hp performance data collector
382=TCP/UDP hp performance data managed node
383=TCP/UDP hp performance data alarm manager
384=TCP/UDP A Remote Network Server System
385=TCP/UDP IBM Application
386=TCP/UDP ASA Message Router Object Def.
387=TCP/UDP Appletalk Update-Based Routing Pro.
388=TCP/UDP Unidata LDM Version 4
389=TCP/UDP Lightweight Directory Access Protocol
390=TCP/UDP UIS
391=TCP/UDP SynOptics SNMP Relay Port
392=TCP/UDP SynOptics Port Broker Port
393=TCP/UDP Data Interpretation System
394=TCP/UDP EMBL Nucleic Data Transfer
395=TCP/UDP NETscout Control Protocol
396=TCP/UDP Novell Netware over IP
397=TCP/UDP Multi Protocol Trans. Net.
398=TCP/UDP Kryptolan
399=TCP/UDP ISO Transport Class 2 Non-Control over TCP
400=TCP/UDP Workstation Solutions
401=TCP/UDP Uninterruptible Power Supply
402=TCP/UDP Genie Protocol
403=TCP/UDP decap
404=TCP/UDP nced
405=TCP/UDP ncld
406=TCP/UDP Interactive Mail Support Protocol
407=TCP/UDP Timbuktu
408=TCP/UDP Prospero Resource Manager Sys. Man.
409=TCP/UDP Prospero Resource Manager Node Man.
410=TCP/UDP DECLadebug Remote Debug Protocol
411=TCP/UDP Remote MT Protocol
412=TCP/UDP Trap Convention Port
413=TCP/UDP SMSP
414=TCP/UDP InfoSeek
415=TCP/UDP BNet
416=TCP/UDP Silverplatter
417=TCP/UDP Onmux
418=TCP/UDP Hyper-G
419=TCP/UDP Ariel
420=TCP/UDP SMPTE
421=TCP/UDP Ariel
422=TCP/UDP Ariel
423=TCP/UDP IBM Operations Planning and Control Start
424=TCP/UDP IBM Operations Planning and Control Track
425=TCP/UDP ICAD
426=TCP/UDP smartsdp
427=TCP/UDP Server Location
428=TCP/UDP OCS_CMU
429=TCP/UDP OCS_AMU
430=TCP/UDP UTMPSD
431=TCP/UDP UTMPCD
432=TCP/UDP IASD
433=TCP/UDP NNSP
434=TCP/UDP MobileIP-Agent
435=TCP/UDP MobilIP-MN
436=TCP/UDP DNA-CML
437=TCP/UDP comscm
438=TCP/UDP dsfgw
439=TCP dasp
440=TCP/UDP sgcp
441=TCP/UDP decvms-sysmgt
442=TCP/UDP cvc_hostd
443=TCP/UDP http protocol over TLS=SSL
444=TCP/UDP Simple Network Paging Protocol
445=TCP/UDP Microsoft-DS
446=TCP/UDP DDM-RDB
447=TCP/UDP DDM-RFM
448=TCP/UDP DDM-BYTE
449=TCP/UDP AS Server Mapper
450=TCP/UDP TServer
451=TCP/UDP Cray Network Semaphore server
452=TCP/UDP Cray SFS config server
453=TCP/UDP CreativeServer
454=TCP/UDP ContentServer
455=TCP/UDP CreativePartnr
456=TCP/UDP macon-UDP
457=TCP/UDP scohelp
458=TCP/UDP apple quick time
459=TCP/UDP ampr-rcmd
460=TCP/UDP skronk
461=TCP/UDP DataRampSrv
462=TCP/UDP DataRampSrvSec
463=TCP/UDP alpes
464=TCP/UDP kpasswd
465=TCP/UDP smtp protocol over TLS=SSL (was ssmtp)
466=TCP/UDP digital-vrc
467=TCP/UDP mylex-mapd
468=TCP/UDP proturis
469=TCP/UDP Radio Control Protocol
470=TCP/UDP scx-proxy
471=TCP/UDP Mondex
472=TCP/UDP ljk-login
473=TCP/UDP hybrid-pop
474=TCP/UDP tn-tl-w2
475=TCP TCPnethaspsrv
476=TCP/UDP tn-tl-fd1
477=TCP/UDP ss7ns
478=TCP/UDP spsc
479=TCP/UDP iafserver
480=TCP/UDP iafdbase
481=TCP/UDP Ph service
482=TCP/UDP bgs-nsi
483=TCP/UDP ulpnet
484=TCP/UDP Integra Software Management Environment
485=TCP/UDP Air Soft Power Burst
486=TCP/UDP avian
487=TCP/UDP saft
488=TCP/UDP gss-http
489=TCP/UDP nest-protocol
490=TCP/UDP micom-pfs
491=TCP/UDP go-login
492=TCP/UDP Transport Independent Convergence for FNA
493=TCP/UDP Transport Independent Convergence for FNA
494=TCP/UDP POV-Ray
495=TCP/UDP intecourier
496=TCP/UDP PIM-RP-DISC
497=TCP/UDP dantz
498=TCP/UDP siam
499=TCP/UDP ISO ILL Protocol
500=TCP/UDP isakmp
501=TCP/UDP STMF
502=TCP/UDP asa-appl-proto
503=TCP/UDP Intrinsa
504=TCP/UDP citadel
505=TCP/UDP mailbox-lm
506=TCP/UDP ohimsrv
507=TCP/UDP crs
508=TCP/UDP xvttp
509=TCP/UDP snare
510=TCP/UDP FirstClass Protocol
511=TCP/UDP mynet-as
512=TCP/UDP remote process execution (authentication performed using
passwords and UNIX login names), Comsat, Biff (used by mail system to
notify users of new mail received; currently receives messages only from
processes on the same machine)
513=TCP login (remote login a la telnet;automatic authentication
performed based on priviledged port numbers and distributed data bases
which identify "authentication domains")
513=UDP who (maintains data bases showing who's logged in to machines
on a local net and the load average of the machine)
514=TCP shell(cmd like exec, but automatic authentication is
performed as for login server)
514=UDP syslog
515=TCP/UDP printer spooler
516=TCP/UDP videotex
517=TCP/UDP talk(like tenex link, but across machine - unfortunately,
doesn't use link protocol (this is actually just a rendezvous port from
which a TCP connection is established))
518=TCP/UDP ntalk
519=TCP/UDP unixtime
520=TCP/UDP extended file name server, router(local routing process
(on site); uses variant of Xerox NS routing information protocol)
521=TCP/UDP ripng
522=TCP/UDP ULP
523=TCP IBM-DB2
524=TCP/UDP NCP
525=TCP/UDP timeserver
526=TCP/UDP newdate
527=TCP/UDP Stock IXChange
528=TCP/UDP Customer IXChange
529=TCP/TCP IRC-SERV
530=TCP/UDP rpc
531=TCP/UDP chat
532=TCP/UDP readnews
533=TCP/UDP for emergency broadcasts
534=TCP/UDP MegaMedia Admin
535=TCP/UDP iiop
536=TCP/UDP opalis-rdv
537=TCP/UDP Networked Media Streaming Protocol
538=TCP/UDP gdomap
539=TCP/UDP Apertus Technologies Load Determination
540=TCP/UDP uucpd
541=TCP/UDP uucp-rlogin
542=TCP/UDP commerce
543=TCP/UDP klogin
544=TCP/UDP krcmd
545=TCP/UDP appleqtcsrvr
546=TCP/UDP DHCPv6 Client
547=TCP/UDP DHCPv6 Server
548=TCP/UDP AFP over TCP
549=TCP/UDP IDFP
550=TCP/UDP new-who
551=TCP/UDP cybercash
552=TCP/UDP deviceshare
553=TCP/UDP pirp
554=TCP/UDP Real Time Stream Control Protocol
555=TCP/UDP dsf
556=TCP/UDP rfs server
557=TCP/UDP openvms-sysipc
558=TCP/UDP SDNSKMP
559=TCP/UDP TEEDTAP
560=TCP/UDP rmonitord
561=TCP/UDP monitor
562=TCP/UDP chcmd
563=TCP/UDP nntp protocol over TLS=SSL (was snntp)
564=TCP/UDP plan 9 file service
565=TCP/UDP whoami
566=TCP/UDP streettalk
567=TCP/UDP banyan-rpc
568=TCP/UDP microsoft shuttle
569=TCP/UDP microsoft rome
570=TCP/UDP demon
571=TCP/UDP udemon
572=TCP/UDP sonar
573=TCP/UDP banyan-vip
574=TCP/UDP FTP Software Agent System
575=TCP/UDP VEMMI
576=TCP/UDP ipcd
577=TCP/UDP vnas
578=TCP/UDP ipdd
579=TCP/UDP decbsrv
580=TCP/UDP SNTP HEARTBEAT
581=TCP/UDP Bundle Discovery Protocol
582=TCP/UDP SCC Security
583=TCP/UDP Philips Video-Conferencing
584=TCP/UDP Key Server
585=TCP/UDP IMAP4+SSL (Use 993 instead - Use of 585 is not
recommended)
586=TCP/UDP Password Change
587=TCP/UDP Submission
588=TCP/UDP CAL
589=TCP/UDP EyeLink
590=TCP/UDP TNS CML
591=TCP/UDP FMPRO4 - HTTP
592=TCP/UDP Eudora Set
600=TCP/UDP Sun IPC server
606=TCP/UDP Cray Unified Resource Manager
607=TCP/UDP nqs
608=TCP/UDP Sender-Initiated=Unsolicited File Transfer
609=TCP/UDP npmp-trap
610=TCP/UDP npmp-local
611=TCP/UDP npmp-gui
612=TCP/UDP HMMP Indication
613=TCP/UDP HMMP Operation
614=TCP/UDP SSLshell
615=TCP/UDP Internet Configuration Manager
616=TCP/UDP SCO System Administration Server
617=TCP/UDP SCO Desktop Administration Server
618=TCP/UDP DEI-ICDA
619=TCP/UDP Digital EVM
620=TCP/UDP SCO WebServer Manager
621=TCP/UDP ESCP
633=TCP/UDP Service Status update (Sterling Software)
634=TCP/UDP ginad
635=TCP/UDP RLZ DBase
636=TCP/UDP ldap protocol over TLS=SSL (was sldap)
637=TCP/UDP lanserver
666=TCP/UDP doom Id Software
667=TCP/UDP campaign contribution disclosures - SDR Technologies
668=TCP/UDP MeComm
669=TCP/UDP MeRegister
670=TCP/UDP VACDSM-SWS
671=TCP/UDP VACDSM-APP
672=TCP/UDP VPPS-QUA
673=TCP/UDP CIMPLEX
674=TCP/UDP ACAP
675=TCP/UDP DCTP
704=TCP/UDP errlog copy=server daemon
705=TCP/UDP AgentX
709=TCP/UDP Entrust Key Management Service Handler
710=TCP/UDP Entrust Administration Service Handler
729=TCP/UDP IBM NetView DM=6000 Server=Client
730=TCP/UDP IBM NetView DM=6000 send=TCP
731=TCP/UDP IBM NetView DM=6000 receive=TCP
741=TCP/UDP netGW
742=TCP/UDP Network based Rev. Cont. Sys.
744=TCP/UDP Flexible License Manager
747=TCP/UDP Fujitsu Device Control
748=TCP/UDP Russell Info Sci Calendar Manager
749=TCP/UDP kerberos administration
750=UDP kerberos version iv
886=TCP/UDP ICL coNETion locate server
887=TCP/UDP ICL coNETion server info
888=TCP/UDP AccessBuilder
900=TCP/UDP OMG Initial Refs
911=TCP xact-backup
989=TCP/UDP ftp protocol, data, over TLS=SSL
990=TCP/UDP ftp protocol, control, over TLS=SSL
991=TCP/UDP Netnews Administration System
992=TCP/UDP telnet protocol over TLS=SSL
993=TCP/UDP imap4 protocol over TLS=SSL
994=TCP/UDP irc protocol over TLS=SSL
995=TCP/UDP pop3 protocol over TLS=SSL (was spop3)
1025=TCP/UDP network blackjack, ICQ
1027=TCP ICQ
1080=TCP/UDP Socks, Wingate
1155=TCP/UDP Network File Access
1212=TCP/UDP lupa
1433=TCP/UDP Microsoft-SQL-Server
1434=TCP/UDP Microsoft-SQL-Monitor
1451=TCP/UDP IBM Information Management
1512=TCP/UDP Wins (Microsoft's Windows Internet Name Service)
1547=TCP/UDP laplink
1559=TCP/UDP web2host
1735=TCP/UDP PrivateChat
1745=TCP/UDP remote-winsock
1789=TCP/UDP hello
1801=TCP/UDP Microsoft Message Que
1986=TCP/UDP cisco license management
1987=TCP/UDP cisco RSRB Priority 1 port
1988=TCP/UDP cisco RSRB Priority 2 port
1989=TCP/UDP cisco RSRB Priority 3 port
1990=TCP/UDP cisco STUN Priority 1 port
1991=TCP/UDP cisco STUN Priority 2 port
1992=TCP/UDP cisco STUN Priority 3 port
1992=TCP/UDP IPsendmsg
1993=TCP/UDP cisco SNMP TCP port
1994=TCP/UDP cisco serial tunnel port
1995=TCP/UDP cisco perf port
1996=TCP/UDP cisco Remote SRB port
1997=TCP/UDP cisco Gateway Discovery Protocol
1998=TCP/UDP cisco X.25 service (XOT)
1999=TCP/UDP cisco identification port
2049=TCP/UDP Network File System - Sun Microsystems
2080=TCP Wingate 3.0
2784=TCP/UDP world wide web - development
3264=TCP/UDP cc:mail=lotus
3268=TCP/UDP Microsoft Global Catalog
3269=TCP/UDP Microsoft Global Catalog with LDAP=SSL
3270=TCP/UDP Verismart
5003=TCP/UDP Claris FileMaker Pro
5631=TCP/UDP pcANYWHEREdata
8010=TCP Wingate 3.0
5632=TCP/UDP pcANYWHEREstat
26000=TCP quake

[Trojans]
21=Back Construction,Blade Runner, Doly Trojan, Fore, FTP trojan,
Invisible FTP, Larva, WebEx, WinCrash
23=Tiny Telnet Server(= TTS)
25=Ajan,Shtrilitz Stealth, Terminator, WinPC, WinSpy, Kuang2 0.17A-0.30,
Antigen, Email Password Sender, Haebu Coceda(=Naebi), Happy 99, Kuang2,
ProMail trojan, Tapiras
31=Agent 31, Hackers Paradise, Masters Paradise
41=DeepThroat
58=DMSetup
59=DMSetup, RingZero
79=Firehotcker
80=Executor
99=Hidden Port
110=ProMail trojan
113=Kazimas
119=Happy 99
121=JammerKillah
421=TCP Wrappers
456=Hackers Paradise
531=Rasmin
555=Ini-Killer, NeTAdmin, Phase Zero, Stealth Spy
666=Attack FTP, Satanz Backdoor,Back Construction, Cain & Abel, ServeU,
Shadow Phyre
911=Dark Shadow
999=DeepThroat,WinSatan
1001=Silencer, WebEx
1010=Doly Trojan
1011=Doly Trojan
1012=Doly Trojan
1015=Doly Trojan
1024=NetSpy
1042=Bla
1045=Rasmin
1090=Xtreme
1095=Rat
1097=Rat
1098=Rat
1099=Rat
1170=Psyber Stream Server
1170=Voice, Streaming Audio trojan, Psyber Stream Server
1234=Ultors Trojan
1243=BackDoor-G, SubSeven,SubSeven Apocalypse
1245=VooDoo Doll
1269=Mavericks Matrix
1349=BO DLL
1492=FTP99CMP
1509=Psyber Streaming Server
1600=Shivka-Burka
1807=SpySender
1981=Shockrave
1999=BackDoor 1.00-1.03, TransScout
2000=TransScout
2001=TransScout
2001=Trojan Cow
2002=TransScout
2003=TransScout
2004=TransScout
2005=TransScout
2023=Ripper
2115=Bugs
2140=Deep Throat
2140=The Invasor
2155=Illusion Mailer
2283=HVL Rat5
2565=Striker
2583=WinCrash
2600=Digital RootBeer
2801=Phineas Phucker
2989=RAT(UDP)
3024=WinCrash
3128=RingZero
3129=Masters Paradise
3150=Deep Throat, The Invasor
3700=Portal of Doom
3791=Eclypse
3801=Eclypse(UDP)
4092=WinCrash
4321=BoBo
4567=File Nail
4590=ICQTrojan
5000=Bubbel, Back Door Setup, Sockets de Troie
5001=Back Door Setup, Sockets de Troie
5011=One of the Last Trojans (OOTLT)
5031=NetMetro
5321=Firehotcker
5400=Blade Runner, Back Construction
5401=Blade Runner, Back Construction
5402=Blade Runner, Back Construction
5550=Xtcp
5512=Illusion Mailer
5555=ServeMe
5556=BO Facil
5557=BO Facil
5569=Robo-Hack
5742=WinCrash
6400=The Thing
6669=Vampyre
6670=DeepThroat
6711=SubSeven
6771=DeepThroat
6776=BackDoor-G, SubSeven
6912=Shit Heep
6939=Indoctrination
6969=GateCrasher
6969=Priority, IRC 3
6970=GateCrasher
7000=Remote Grab, Kazimas
7300=NetMonitor
7301=NetMonitor
7306=NetMonitor
7307=NetMonitor
7308=NetMonitor
7789=Back Door Setup, ICKiller
8080=RingZero
9400=InCommand
9872=Portal of Doom
9873=Portal of Doom
9874=Portal of Doom
9875=Portal of Doom
9876=Cyber Attacker
9878=TransScout
9989=iNi-Killer
10067=Portal of Doom
10101=BrainSpy
10167=Portal of Doom
10520=Acid Shivers
10607=Coma
11000=Senna Spy
11223=Progenic trojan
12076=Gjamer
12223=Hack?9 KeyLogger
12345=GabanBus, NetBus, Pie Bill Gates, X-bill
12346=GabanBus, NetBus, X-bill
12361=Whack-a-mole
12362=Whack-a-mole
12631=WhackJob
13000=Senna Spy
16969=Priority
17300=Kuang2 The Virus
20000=Millennium
20001=Millennium
20034=NetBus 2 Pro
21544=GirlFriend
20203=Logged
22222=Prosiak
23456=Evil FTP, Ugly FTP, Whack Job
23476=Donald Dick
23477=Donald Dick
26274=Delta Source
29891=The Unexplained
30029=AOL Trojan
30100=NetSphere 1.27a, NetSphere 1.31
30101=NetSphere 1.31, NetSphere 1.27a
30102=NetSphere 1.27a, NetSphere 1.31
30103=NetSphere 1.31
30303=Sockets de Troie
30999=Kuang2
31336=Bo Whack
31337=Baron Night, BO client, BO2, Bo Facil, BackFire, Back Orifice,DeepBO
31338=NetSpy DK
31338=Back Orifice, DeepBO
31339=NetSpy DK
31666=BOWhack
31785=Hack Attack
31787=Hack Attack
31789=Hack Attack
31791=Hack Attack
33911=Spirit 2001a
33333=Prosiak
34324=BigGluck, TN
40412=The Spy
40421=Agent 40421, Masters Paradise
40422=Masters Paradise
40423=Masters Paradise
40426=Masters Paradise
47262=Delta Source
50505=Sockets de Troie
50766=Fore, Schwindler
53001=Remote Windows Shutdown
54320=Back Orifice 2000
54321=School Bus .69-1.11, Back Orifice 2000(UDP)
60000=Deep Throat
61466=Telecommando
65000=Devil

+ Recent posts