need advice on nameserver configuration


 
Thread Tools Search this Thread
Top Forums UNIX for Advanced & Expert Users need advice on nameserver configuration
# 1  
Old 04-01-2006
need advice on nameserver configuration

on a Red Hat server I am running name server (ns1.mynameserver.com , ns2.mynameserver.com) can anybody advice how to set my server so that it automatically forwards domains that have ns1.mynameserver.com , ns2.mynameserver.com as nameserver address to a specific url/page, without actually adding hosting or dns records for domains on a server manualy
for example: I have somedomain.com once I change its nameserver from domain's registrars(enom godday...) control panel to ns1.mynameserver.com , ns2.mynameserver.com domain automatically will get forwarded to some page/url
thanks
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. UNIX for Beginners Questions & Answers

Bind: Can you configure multiple domains using the same nameserver

Can you add multiple domains to a nameserver without creating a new IP address? I have one IP address on my machine and have configured forward and reverse zone files. Names are resolving fine. I know I can add another domain to the named.conf file and create new forward and reverse files. what... (2 Replies)
Discussion started by: LinuxGirl
2 Replies

2. IP Networking

[Android-Networking] can't acces internet, while settings says all is ok => Routing/Nameserver prob

Hello, since a while, i have a very strange and frustrating network problem with my Huawei p6(Android 4.4.2). The ROM is "Omni Rom", i think - but it shouldn't matter. The problem is: when i try to connect through wlan (i have no mobile internet), according to the network manager of android,... (1 Reply)
Discussion started by: Palindrom
1 Replies

3. Web Development

(WHM) Primary Resolver and Nameserver confusion

Okay, I know generally how the internet works but here I am confused. Every website that I've worked on prior to this had a vendor providing Nameserver services -Meaning that I just pointed my DNS to their server and they do the rest. Now, I am confused by what the Primary Resolver is... (1 Reply)
Discussion started by: Astrocloud
1 Replies

4. HP-UX

Which nameserver is used?

Hello, i change the nameserver in the resolv.conf file and want to test the new settings. On Linux i can call nslookup and it shows the nameserver which is used: ># nslookup www.unix.com Server: XXX.XXX.XXX.XXX Address: XXX.XXX.XXX.XXX#53 Non-authoritative answer:... (3 Replies)
Discussion started by: soeren1176
3 Replies

5. Shell Programming and Scripting

Need Advice

Guys, Can you tell me what value would additional knowledge of PERL and CGI scripting will add to my skill set of UNIX shell scripting and ORACLE PL/SQL? I understand that PERL is a good tool for text processing. (1 Reply)
Discussion started by: yabhi_22
1 Replies

6. UNIX for Dummies Questions & Answers

NameServer not accessible

Hi everybody I am facing a little problem with names servers. I have a VPS with Kloxo installed on it I have registered 2 name servers (i.e. ns1.domain.com and ns2.domain.com) past one month. These nameservers are not accessible yet. I have check the nameserver on internic site and they are... (3 Replies)
Discussion started by: rizwan65
3 Replies

7. Red Hat

two dns search with 4 nameserver

Hi all, Does someone use this kind of config on /etc/resolv.conf? search domain1.com domain2.com nameserver 1.x.x.x nameserver 2.x.x.x nameserver 3.x.x.x nameserver 4.x.x.x Is that going to work properly? I heard that only 3 lines are enabled on resolv.conf. Is that true? Thanks! (1 Reply)
Discussion started by: itik
1 Replies

8. Red Hat

Any advice would help

Hi everyone. I must admit up front that I am not very strong when it comes to Linux. I am actually a Windows guy, but don't let that count against me. :) I work for a very small company so we do not have a Server/Linux Admin on staff. Most of our needs have been handled by our WebHost. We have... (2 Replies)
Discussion started by: liquidstyleb
2 Replies

9. Shell Programming and Scripting

looking for advice...

Hi. First of all, Im an msoft guy, and when it comes to linux/unix, I'm retarded. Here is what I'm trying to do. I want to start I want to automatically connect to a remote server. Then I need it to login(https) -insert the licensce in the box(vi) -based on that licensce, the... (1 Reply)
Discussion started by: bravo24601
1 Replies

10. UNIX Desktop Questions & Answers

Looking for some advice

I am looking for some advice on wether to use unix or red hat linux? I have played with most windows OS and Mac OS up to in and including OS X. any and all advice would be appreciated (4 Replies)
Discussion started by: justawind
4 Replies
Login or Register to Ask a Question
wsdeploy(1M)						    Application Server Utility						      wsdeploy(1M)

NAME
wsdeploy - reads a WAR file and the jaxrpc-ri.xml file and generates another WAR file that is ready for deployment SYNOPSIS
wsdeploy -o input_WAR_file options Use the wsdeploy command to take a WAR file which does not have implementation specific server side tie classes to generate a deployable WAR file that can be deployed on the application server. wsdeploy internally runs wscompile with the -gen:server option. The wscompile com- mand generates classes and a WSDL file which wsdeploy includes in the generated WAR file. Generally, you don't have to run wsdeploy because the functions it performs are done automatically when you deploy a WAR with deploytool or asadmin. -classpath path location of the input class files. -keep keep temporary files. -tmpdir temporary directory to use. -o output WAR file required; location of the generated WAR file. -source version generates code for the specified JAX-RPC SI version. Supported version are: 1.0.1, 1.0.3, and 1.1 (default). -verbose outputs messages about what the compiler is doing. -version prints version information. INPUT WAR FILE
The input WAR file for wsdeploy will typically have the following structure: META-INF/MANIFEST.MF WEB-INF/classes/hello/HelloIF.class WEB-INF/classes/hello/HelloImpl.class WEB-INF/jaxrpc-ri.xml WEB-INF/web.xml Where: HelloIF is the service endpoint interface, and HelloImpl is the class thatimplements the interface. The web.xml file is tghe deploy- ment descriptor of a web component. jaxrpc-ri.xml FILE The following is a simple HelloWorld service. <xml version="1.0" encoding="UTF-8"?> <webServices> xmlns="http://java.sun.com/xml/ns/jax-rpc/ri/dd" version="1.0" targetNamespaceBase="http://com.test/wsdl" typeNamespaceBase="http://com.test/types" urlPatternBase="/ws"> <endpoint name="MyHello" displayName="HelloWorld Service" description="A simple web service" wsdl="/WEB-INF/<wsdlname> interface="hello.HelloIF" implementation="hello.HelloImpl"/> <endpointMapping endpointName="MyHello" urlPattern="/hello"/> </webServices> The webServices() element must contain one or more endpoint() elements. The interface and implementation attriutes of endpoint() specify the service's interface and iimplementation class. The endpointMapping() element associates the service port with the part of the endpoint URL path that follows the urlPatternBase(). NAMESPACE MAPPINGS
Here is a schema type name example: schemaType="ns1:SampleType" xmlns:ns1="http://echoservice.org/types" When generating a Java type from a schema type, wscompile gets the classname from the local part of the schema type name. To specify the package name of the generated Java classes, you define a mapping between the schema type namespace and the package name. You define this mapping by adding a <namespaceMappingRegistry> element to the config.xml file. For example: <service> ... <namespaceMappingRegistry> <namespaceMapping namespace="http://echoservice.org/types" packageName="echoservice.org.types"/> </namespaceMappingRegistry> ..... </service> You can also map namespaces in the oppisite direction, from schema types to Java types. In this case, the generated schema types are taken from the package that the type comes from. HANDLERS
A handler accesses a SOAP message that represents an RPC request or response. A handler class must implement the javax.xml.rpc.handler interface. Because it accesses a SOAP message, a handler can manipulate the message with the APIs of the javax.xml.soap.package(). A handler chain is a list of handlers. You may specify one handler chain for the client and one for the server. On the client, you include the handlerChains() element in the jaxrpc-ri.xml file. On the server, you include this element in the config.xml file. Here is an example of the handlerChains() element in the config.xml: <handlerChains> <chain runAt="server" roles= "http://acme.org/auditing "http://acme.org/morphing" xmlns:ns1="http://foo/foo-1"> <handler className="acme.MyHandler" headers ="ns1:foo ns1:bar"/> <property name="property" value="xyz"/> </handler> </chain> </handlerChains> For more information on handlers, see the SOAP message Handlers chapter of the JAX-PRC specifications. wscompile(1M) Sun Java System Application Server March 2004 wsdeploy(1M)