123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110 |
- /*
- Technitium DNS Server
- Copyright (C) 2023 Shreyas Zare (shreyas@technitium.com)
- This program is free software: you can redistribute it and/or modify
- it under the terms of the GNU General Public License as published by
- the Free Software Foundation, either version 3 of the License, or
- (at your option) any later version.
- This program is distributed in the hope that it will be useful,
- but WITHOUT ANY WARRANTY; without even the implied warranty of
- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- GNU General Public License for more details.
- You should have received a copy of the GNU General Public License
- along with this program. If not, see <http://www.gnu.org/licenses/>.
- */
- using DnsServerCore.Dns.ResourceRecords;
- using System;
- using System.Collections.Generic;
- using TechnitiumLibrary.Net.Dns;
- using TechnitiumLibrary.Net.Dns.ResourceRecords;
- using TechnitiumLibrary.Net.Proxy;
- namespace DnsServerCore.Dns.Zones
- {
- class ForwarderZone : ApexZone
- {
- #region constructor
- public ForwarderZone(AuthZoneInfo zoneInfo)
- : base(zoneInfo)
- { }
- public ForwarderZone(string name, DnsTransportProtocol forwarderProtocol, string forwarder, bool dnssecValidation, NetProxyType proxyType, string proxyAddress, ushort proxyPort, string proxyUsername, string proxyPassword, string fwdRecordComments)
- : base(name)
- {
- _zoneTransfer = AuthZoneTransfer.Deny;
- _notify = AuthZoneNotify.None;
- _update = AuthZoneUpdate.Deny;
- DnsResourceRecord fwdRecord = new DnsResourceRecord(name, DnsResourceRecordType.FWD, DnsClass.IN, 0, new DnsForwarderRecordData(forwarderProtocol, forwarder, dnssecValidation, proxyType, proxyAddress, proxyPort, proxyUsername, proxyPassword));
- if (!string.IsNullOrEmpty(fwdRecordComments))
- fwdRecord.GetAuthRecordInfo().Comments = fwdRecordComments;
- _entries[DnsResourceRecordType.FWD] = new DnsResourceRecord[] { fwdRecord };
- }
- #endregion
- #region public
- public override void SetRecords(DnsResourceRecordType type, IReadOnlyList<DnsResourceRecord> records)
- {
- switch (type)
- {
- case DnsResourceRecordType.CNAME:
- throw new InvalidOperationException("Cannot set CNAME record at zone apex.");
- case DnsResourceRecordType.SOA:
- case DnsResourceRecordType.DS:
- throw new DnsServerException("The record type is not supported by forwarder zones.");
- default:
- base.SetRecords(type, records);
- break;
- }
- }
- public override void AddRecord(DnsResourceRecord record)
- {
- switch (record.Type)
- {
- case DnsResourceRecordType.DS:
- throw new DnsServerException("The record type is not supported by forwarder zones.");
- default:
- base.AddRecord(record);
- break;
- }
- }
- #endregion
- #region properties
- public override AuthZoneTransfer ZoneTransfer
- {
- get { return _zoneTransfer; }
- set { throw new InvalidOperationException(); }
- }
- public override AuthZoneNotify Notify
- {
- get { return _notify; }
- set { throw new InvalidOperationException(); }
- }
- public override AuthZoneUpdate Update
- {
- get { return _update; }
- set { throw new InvalidOperationException(); }
- }
- #endregion
- }
- }
|