I had a web service in two locations location1 and location2 now my application should access the service from location1 and if it is not available at location1 then only it must goes to location2 can i configure the dns based on my requirement using C# pragmatically
change DNS server programatically in C#
423 Views Asked by Randhi Rupesh At
1
There are 1 best solutions below
Related Questions in C#
- Passing arguments to main in C using Eclipse
- kernel module does not print packet info
- error C2016 (C requires that a struct or union has at least one member) and structs typedefs
- Drawing with ncurses, sockets and fork
- How to catch delay-import dll errors (missing dll or symbol) in MinGW(-w64)?
- Configured TTL for A record(s) backing CNAME records
- Allocating memory for pointers inside structures in functions
- Finding articulation point of undirected graph by DFS
- C first fgets() is being skipped while the second runs
- C std library don't appear to be linked in object file
- gcc static library compilation
- How to do a case-insensitive string comparison?
- C programming: Create and write 2D array of files as function
- How to read a file then store to array and then print?
- Function timeouts in C and thread
Related Questions in DNS
- Configured TTL for A record(s) backing CNAME records
- Redirecting subdomain to directory on Azure
- SPF and DKIM records for Mandrill on DigitalOcean
- How to convert hostname to DNS name?
- Could someone bring Google OAuth2 for Cloud DNS via Rest to light?
- Spoof Captive Portal Screen on an iOS Device using DNS
- DNS_PROBE_FINISHED_NXDOMAIN on Google App Engine website
- How to check if a redirect leads to a different domain
- IP address to Domain Name? DNS?
- error CS1729: The type `ARSoft.Tools.Net.Dns.DnsServer' does not contain a constructor that takes `4' arguments
- Windows, Apache, Acrylic DNS, and wildcard subdomains
- How to configure DNS for microsoft odbc driver for oracle (in 64 bit arch.)
- How to use one time domain name in android?
- logstash dns filter miss
- Redirect website to another website if blocked in particular region
Related Questions in DHCP
- Nmap does not show DHCP server, no errors
- Best way to add support for a new subnet
- get a DHCP server's IP
- Can't Parse DHCP packets with Ryu's get_protocol(dhcp.dhcp)
- Cannot integrate Windows10 in my local network - pulls IP address outside of DHCP range
- How can I override another .bbappend
- Calculate subnet with few unused addresses
- Code to Change the TCP/IP configuration of the computer to DHCP
- 1 script to switch to and from static IP or DHCP
- Photos are not showing up when using No-IP ddns and linux apache
- DHCP server issues
- Android: How to prevent a Wifi disconnect on DHCP renewal?
- powershell - trying to use split method to isolate the number "50" from the returned value "Free : 50"
- DhcpEnumFilterV4 (P/Invoke) always reports ERROR_NO_MORE_ITEMS
- Python dhcp packet using raw socket
Related Questions in DNSMASQ
- Kong: Running Mashape Kong fails on Mac OS X
- Dnsmasq failing to catch 307 redirect for https?
- Asterisc(*) signal on DNS Responses with tcpdump
- Laravel Valet + dnsmasq don't work (dnsmasq status error)
- change DNS server programatically in C#
- dnsmasq config being bypassed
- localhost/127.0.0.1 - This site can’t be reached
- Install pihole over bind9
- CoreDNS do not respect local DNS
- Network DNS between pods in rootless Podman
- OpenWrt/network - Configuring dnsmasq for ad-blocking fails with "bad address at"
- I can't do domain painting
- DNSMasq issue with nslookups on CentOS 7.8. I am getting no ANSWERS for AAAA records and always getting REFUSED
- Unable to run multiple dnsmasq dhcp servers on ubuntu 18.04
- Docker container internal vs external dns resolution issue using Traefik
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
On DNS, you can configure duplicate host record to point to different IP to create the load balancing effect, but you cannot detect the "not available status" by using DNS. Even you can configure the DNS record programatically, DNS still take time to refresh the local cache and server cache.