한국어

소프트스위치

온누리070 플레이스토어 다운로드
    acrobits softphone
     온누리 070 카카오 프러스 친구추가온누리 070 카카오 프러스 친구추가친추
     카카오톡 채팅 상담 카카오톡 채팅 상담카톡
    
     라인상담
     라인으로 공유

     페북공유

   ◎위챗 : speedseoul


  
     PAYPAL
     
     PRICE
     

pixel.gif

    before pay call 0088 from app


http://shincdevnote.blogspot.kr/search/label/ONVIF

인증서 만들기

출처 : 딤딤이 블로그(http://dimdim.tistory.com/50)

openssl 을 이용한 인증서 생성 절차를 정리한다.
참고로 여기서 개인키파일(key.pem), CSR파일(csr.pem), 인증서 파일 (crt.pem) 등의 파일명은 마음데로 변경할 수 있다.
1. 개인키 파일 생성
  - Random Sate 사용 여부 및 암호화는 필수가 아닌 선택사항이다.
  - 키파일을 암호화할 경우 패스워드 입력이 필요하며, 해당 패스워드를 알아야만 키파일을 사용할 수 있다. (암호화 했으니까 복호화해야 키값을 알지!!! 암복호화에 사용되는 것이 패스워드고!!!)
openssl md5 * > rand.dat  #Random State 파일 생성
openssl genrsa -rand rand.dat -des3 1024 > key.pem    #Random State 사용 & des3 암호화 사용 & 1024 bit 키 생성
openssl genrsa -des3 1024 > key.pem  #des3 암호화 사용 & 1024 bit 키 생성
openssl genrsa 1024 > key.pem  #1024bit 키생성 (패스워드 필요없음)
openssl genrsa > key.pem  #기본 512bit 키 생성

2. CSR 생성
  - CSR은 "Certificate Signing Request" 의 약자로 인증서 서명 요청을 의미한다. 좀더 쉽게 설명하면 CSR 파일은 인증서를 발급받기 위해서 나는 "아무개"이고 키값은 어떤걸 사용한다는 정보를 저장하고 있다.
openssl req -new -key key.pem > csr.pem
Enter pass phrase for key.pem:    #키파일 생성시 사용한 패스워드 입력 (키파일을 암호화한 경우만 필요한 과정임)
You are about to be asked to enter information that will be incorporated
into your certificate request.
What you are about to enter is what is called a Distinguished Name or a DN.
There are quite a few fields but you can leave some blank
For some fields there will be a default value,
If you enter '.', the field will be left blank.
-----
Country Name (2 letter code) [GB]:                                         #ISO 국가코드 입력
State or Province Name (full name) [Berkshire]:                       #도/시 입력
Locality Name (eg, city) [Newbury]:                                        #도시명 입력
Organization Name (eg, company) [My Company Ltd]:              #회사명 입력
Organizational Unit Name (eg, section) []:                               #조직명 입력
Common Name (eg, your name or your server's hostname) []:   #사용자명 혹은 서버 호스트명
Email Address []:                                                                 #이메일주소

3. SSL 인증서 파일 생성
3.1 공인 인증서 파일 생성
  - 공인인증서 발급 기관의 박급절차를 따라 인정서 파일을 발급받으며 인정서 발급시 위에서 생성한 CSR 파일이 필요하다.
  - 공인 인증 기관은 아래와 같다.
    + 한국전자인증 : http://www.crosscert.com
    + 금융결제원 전자인증센터(yessign) : https://www.yessign.or.kr/ssl/index.htm
3.2 사설 인증서 파일 생성
  - openssl을 이용하여 사설 인증서 파일을 생성한다. 
openssl req -key key.pem -x509 -nodes -sha1 -days 365 -in csr.pem -out crt.pem

조회 수 :
24310
등록일 :
2017.09.14
15:32:04 (*.160.88.18)
엮인글 :
http://webs.co.kr/index.php?document_srl=3311890&act=trackback&key=53c
게시글 주소 :
http://webs.co.kr/index.php?document_srl=3311890
List of Articles
번호 제목 글쓴이 조회 수 추천 수 날짜sort
51 2017 08 31 opensips 2.32 install debian8.8 module install compile err modules admin 42734   2017-09-04
 
50 opensips command /sbin/opensipsctl detail admin 125633   2017-09-04
 
49 compile only the textops module make modules=modules/textops modules admin 19627   2017-09-05
 
48 Installing RTPEngine on Ubuntu 14.04 admin 32711   2017-09-05
 
47 rtpengine install and config admin 58957   2017-09-05
 
46 OpenSIPS basic configuration script 기본 컨피그 admin 105889   2017-09-05
 
45 WebSocket Transport using OpenSIPS configuration 웹 소켓 컨피그레이션 기본 admin 21476   2017-09-06
 
44 rtpengine config basic and opensips configuration and command admin 53905   2017-09-06
 
43 오픈소스 (사내)메신저 서버 구축, 오픈 파이어(openfire) 설치방법과 세팅(리눅스 기준) admin 73100   2017-09-09
 
42 PUSH SERVER 푸시서버 안드로이드 애플 admin 209207   2017-09-11
 
41 Advanced SIP scenarios with Event-based-Routing admin 33819   2017-09-11
 
40 opensips.cfg. sample admin 24598   2017-09-12
 
39 Fail2Ban Freeswitch How to secure admin 61775   2017-09-12
 
38 OpenSIPS command line tricks admin 45519   2017-09-13
 
37 SIP to XMPP Gateway + SIP Presence Server opensips admin 52645   2017-09-13
 
36 How to setup a Jabber / XMPP server on Debian 8 (jessie) using ejabberd admin 124714   2017-09-13
 
35 opensips tls cfg admin 30322   2017-09-14
 
34 Using TLS in OpenSIPS v2.2.x admin 45339   2017-09-14
 
33 Documentation -> Tutorials -> TLS opensips.cfg admin 25293   2017-09-14
 
» openssl 을 이용한 인증서 생성 절차를 정리한다. 개인키 CSR SSL 인증서 파일 생성 admin 24310   2017-09-14
http://shincdevnote.blogspot.kr/search/label/ONVIF 인증서 만들기 출처 : 딤딤이 블로그(http://dimdim.tistory.com/50) openssl 을 이용한 인증서 생성 절차를 정리한다. 참고로 여기서 개인키파일(key.pem), CSR파일(csr.pem), 인증서...  
31 opensips configuration config explain easy basic 오픈쉽스 컨피그레이션 기본 설명 file admin 22478   2017-12-07
 
30 OpenSIPS Module Interface admin 43013   2017-12-07
 
29 opensips push notification How to admin 22209   2017-12-07
 
28 opensips exec module admin 19415   2017-12-08
 
27 in opensips what is has_totag() admin 22754   2017-12-09
 
26 in opensips db_does_uri_exist() what is admin 19011   2017-12-09
 
25 in opensips what is lookup(domain [, flags [, aor]]) admin 92093   2017-12-09
 
24 what is loose_route() in opensips ? file admin 24456   2017-12-09
 
23 what is record_route() in opensips ? admin 25118   2017-12-09
 
22 dictionary.opensips radius admin 96134   2017-12-09