If you experience ORA-12537 connection closing after you opened firewall properly, you should check contents of protocol.ora file placed in Oracle Server.Generally, you can find it at "$ORACLE_HOME/network/admin/protocol.ora".
tcp.validnode_checking = yes
tcp.invited_nodes=( 192.168.0.100 )
Above config means, 152.68.18.73 is the only IP address which has authority to contact this Oracle Server. Be careful not to miss add server own IP address should be here.
tcp.validnode_checking = yes
tcp.excluded_nodes= (192.168.0.100 )
If you set any IP address into tcp.excluded_nodes item, that IP will be blocked when try to connect Oracle Server. Surely, you can use invited and excluded nodes with in same protocol.ora file simultaneously. When you need to allow more IP addresses, you can describe IP addresses in one line with comma seperation.
tcp.validnode_checking = yes
tcp.invited_nodes=( 192.168.0.100, 192.168.0.101 )
If you have so many IP addresses to allow or block, you can use IP range like 192.168.0.0 (B-Class). And you also can use domain name to describe specific IP address. Let`s see below example.
tcp.validnode_checking = yes
tcp.invited_nodes=( 192.168.0.100, 192.168.0.101, 192.168.0.0 )
Once you change on protocol.ora file, you should restart Oracle listener to make it effective.
- NoPD -
tcp.validnode_checking = yes
tcp.invited_nodes=( 192.168.0.100 )
Above config means, 152.68.18.73 is the only IP address which has authority to contact this Oracle Server. Be careful not to miss add server own IP address should be here.
tcp.validnode_checking = yes
tcp.excluded_nodes= (192.168.0.100 )
If you set any IP address into tcp.excluded_nodes item, that IP will be blocked when try to connect Oracle Server. Surely, you can use invited and excluded nodes with in same protocol.ora file simultaneously. When you need to allow more IP addresses, you can describe IP addresses in one line with comma seperation.
tcp.validnode_checking = yes
tcp.invited_nodes=( 192.168.0.100, 192.168.0.101 )
If you have so many IP addresses to allow or block, you can use IP range like 192.168.0.0 (B-Class). And you also can use domain name to describe specific IP address. Let`s see below example.
tcp.validnode_checking = yes
tcp.invited_nodes=( 192.168.0.100, 192.168.0.101, 192.168.0.0 )
Once you change on protocol.ora file, you should restart Oracle listener to make it effective.
- NoPD -
'Development > Database' 카테고리의 다른 글
| Oracle : Troubleshoot ORA-12537 (0) | 2009/05/11 |
|---|---|
| Oracle : How to count repeated character in specific column? (0) | 2009/05/08 |
| ORA-00054 에러 트러블 슈팅 (0) | 2009/04/06 |
| OracleClient 는 한글 경로를 지원하지 않는다? (1) | 2009/02/19 |
윈도우 서버 2008 (이하 WS2008 혹은 W2K8) 이 등장하면서 터미널 서버 및 터미널 서버 클라이언트에 다양한 변화가 생겼다. 윈도우 비스타가 등장하면서 알려진 내용들.....
Oracle : Troubleshoot ORA-12537 2009/05/11
If you experience ORA-12537 connection closing after you opened firewall properly, you should check contents of protocol.ora f..
Last night, I have got request from my customer. He wanted to know how many XML nodes are there in XML log table placed in Ora..
개발자와 IT 종사자를 위한 Tech Festival 2009/04/24
본 메일은 전자신문 정보사업국에서 발송하는 IT 전시/컨벤션 행사에 관한 정보 메일입니다. 본 메일의 수신을 취소하시려면 <여기>를 클릭해주세요. 서울시 영등포구 영등포동 2가 94-152 전자신문사 대표자 : 금기현 사업자번..
Presentation 가상화를 해야하는 이유는 무엇일까? #3 2009/04/22
IDC 나 서버를 운영하는 사람의 입장에서 가상화를 도입하는 이유는 더 다양해질 수 있을 것 같다. 전력 수급의 문제라던가 공간의 문제와 같은 현실의 물리적인 문제들이 있을수도 있고, 서로 다른 하드웨어를 사용하는 것을 줄이는..




Prev

Rss Feed

