ispCP - Board - Support
Manual lines in DNS zone file - Printable Version

+- ispCP - Board - Support (http://www.isp-control.net/forum)
+-- Forum: ispCP Omega Development Area (/forum-1.html)
+--- Forum: General discussion (/forum-11.html)
+--- Thread: Manual lines in DNS zone file (/thread-3727.html)

Pages: 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17


RE: Manual lines in DNS zone file - kilburn - 12-24-2008 07:17 PM

sci2tech Wrote:I did not included in RC7 because things can be easy broken by clients that do not know what DNS is Wink

If this is the real reason I suggest adding a configuration option (allow manual dns setup) disabled by default. Otherwise this patch will surely break sooner or later and may cause upgrade problems to people that use it, etc.

I can implement it if you agree with my suggestion sci2tech, just give me an "ok, do it!" Wink


RE: Manual lines in DNS zone file - sci2tech - 12-25-2008 04:49 AM

Blondak already added this functionality Smile . Still I think this should not be used until it will be "fool proof" (no offence to anybody). Please test it and feel free to add improvements. If more people will test it and offer feedback, this can be merged into trunk.


RE: Manual lines in DNS zone file - Mister_K - 01-07-2009 08:17 AM

for install in rc7 its possible ? i want plz Smile


RE: Manual lines in DNS zone file - sci2tech - 01-08-2009 01:50 AM

Use the patch http://www.isp-control.net/forum/attachment.php?aid=548


RE: Manual lines in DNS zone file - itanium - 01-08-2009 02:00 AM

Or this in the root of directory where is gui, engine, docs etc...

patch -p1< patch_dns.txt

Ps: tested in RC7 last svn and no problem.


RE: Manual lines in DNS zone file - TXC - 01-08-2009 03:51 AM

possibility to change MX records would be great.


RE: Manual lines in DNS zone file - Mister_K - 01-08-2009 05:59 AM

sorry im french but :

Installation :
1-
Code:
CREATE TABLE IF NOT EXISTS `domain_dns` (
`domain_dns_id` int(11) NOT NULL auto_increment,
`domain_id` int(11) NOT NULL,
`alias_id` int(11) default NULL,
`domain_dns` varchar(50) NOT NULL,
`domain_class` enum('IN','CH','HS') NOT NULL default 'IN',
`domain_type` enum('A','AAAA','CERT','CNAME','DNAME','GPOS','KEY','KX','MX','NAPTR','NSAP','NS​ ','NXT','PTR','PX','SIG','SRV','TXT') NOT NULL default 'A',
`domain_text` varchar(128) NOT NULL,
PRIMARY KEY (`domain_dns_id`)
);

2- Command for use ?
http://www.isp-control.net/forum/attachment.php?aid=529


3- Patch rc7
Command for use ?
http://www.isp-control.net/forum/attachment.php?aid=548

Plz Sad


RE: Manual lines in DNS zone file - TXC - 01-08-2009 06:27 AM

2 & 3:

patch -p1< [FILENAME]


(replace [FILENAME] with filename of file you downloaded)


RE: Manual lines in DNS zone file - Mister_K - 01-08-2009 09:16 AM

thx Smile i try saturday thx


RE: Manual lines in DNS zone file - Blondak - 01-08-2009 06:26 PM

(01-08-2009 03:51 AM)TXC Wrote:  possibility to change MX records would be great.

This is possible, and can be easily done, but I don't know if is it good idea, maybe I can do per user allowed record types, but there are some thinks to discuss. I think that at first we must make this "fool proof", as sci2tech wrote, that's reason why i expect some feedback, but I can add "Per User Allowed Record Types" to wishlist Wink (i think i would be easy done, but it require update DB structure, so i'll wait).

With regards Blondak

edit: I create patch against latest patch with MX support (edit_dns.php $DNS_allowed_types)