aboutsummaryrefslogtreecommitdiffstats
path: root/config/bind
Commit message (Collapse)AuthorAgeFilesLines
* bind - code style fixesdoktornotor2015-08-221-115/+107
| | | | | - Fix copyright header - Code style fixes - Use safe_mkdir and {stop,restart}_service()
* bind - code style fixesdoktornotor2015-08-221-31/+31
| | | | | - Fix copyright header - Some XHTML fixes - Wrap javascript in CDATA
* bind - code style fixesdoktornotor2015-08-221-108/+142
| | | | | | - Fix copyright header - Fix custom_php_validation_command syntax - Nuke unused tags - Improve descriptions, typo fixes
* bind - code style fixesdoktornotor2015-08-221-63/+54
| | | | | - Fix copyright header - Nuke loads of unused tags - Improve descriptions, typo fixes
* bind - code style fixesdoktornotor2015-08-221-48/+52
| | | | | - Fix copyright header - Nuke unused tags - Improve descriptions, typo fixes
* bind - code style fixesdoktornotor2015-08-221-54/+37
| | | | | - Fix copyright header - Nuke loads of unused tags - Improve descriptions, typo fixes
* bind - code style fixesdoktornotor2015-08-221-104/+158
| | | | | | - Fix copyright header - Fix file permissions - Nuke loads of unused tags - Improve descriptions, typo fixes
* 2.3+ won't use PBI anymoreRenato Botelho2015-04-221-1/+1
|
* BIND - refix rate-limit option and add comments to avoid the problem in the ↵Stuart Wyatt2015-04-161-2/+7
| | | | | | | | | | | | future Put the {} back around the rate-limit values without any whitespace. {} around PHP variables in <<< text output to named.conf might get confused with {} text in namd.conf. Added this comment in those areas to help prevent future problems. // curly braces in the following <<<EOD are PHP {$variable}, not named.conf text { value; } bump package version
* BIND - fix rate-limit option - remove {}Stuart Wyatt2015-04-161-2/+2
| | | | | | | | | The rate-limit option should not have values with {} and look like this: rate-limit { responses-per-second 15; log-only yes; };
* BIND - fix typo in "statment" in enable_updatepolicy fieldStuart Wyatt2015-04-091-1/+1
|
* BIND - remove redundant variable initializationStuart Wyatt2015-04-091-1/+0
|
* BIND - clean up zone switch statementsStuart Wyatt2015-04-091-27/+39
| | | | Make the zone type cases more consistent and add default cases.
* BIND - improve indentation in generated named.conf fileStuart Wyatt2015-04-091-10/+12
| | | | This improves the readability of the generated named.conf file.
* BIND - add support for multiple views per zone configurationStuart Wyatt2015-04-092-5/+10
| | | | | | | | | Often a zone configuration can be identical for LAN/local and WAN/pulic views, especially when using NAT reflection. This change allows those zones to only be entered once in the configuration and then applied to both the local and public views. The change converts the zone's 'view' field from a single selection to an array multiple selection. Since an old value of 'local' is the same as an array value with only one element for 'local', this change is backwards compatible with existing configurations. For that reason, I'm leaving the field name as 'view' rather than changing it to 'views' When the zones are being added to the view clause, it will now check to see if the view is in the zone's view list rather than checking to see if it is a simple match before including the zone in the view. By setting the old varible $zoneview to the matching view from the list, the existing code needs very little change.
* BIND - add support for zone update-policy statement on master zonesStuart Wyatt2015-04-092-1/+33
| | | | | | The update-policy statement allows the zone to specify, among other things, a key to be used for authorization of master zone updates Add a checkbox and text field to add an update-policy statement to the zone configuration. When the update-policy statement is used, it replaces the allow-update statement.
* BIND - clean up zone codeStuart Wyatt2015-04-091-6/+23
| | | | | | | | | Trim trailing ; from forwarders since ; is added when it is written to the config. Since it's a list of semi-colon separated values, users can accidently add a trailing ; Only ensure the view folder exists if the zone is not a 'forward' zone since forward zones are only in named.conf and don't have a .DB file Add allow-query statements to slave and redirect zones Add allowquery and allowupdate fields to on_type_zone_changed() Use isempty() on customoptions and forwarders to skip adding empty statements Use isempty() instead of == '' on some statements
* BIND - add support for named command line options -4 and -6Stuart Wyatt2015-04-092-5/+20
| | | | | | | | -4 and -6 restrict the resolver to use the IPv4 and IPv6 transports respectively. The option is needed for the cases such as when you have IPv6 enabled on the LAN, but the WAN does not support IPv6. Add a list of choices with IPv4+IPv6 (default), IPv4 (only) and IPv6 (only) If IPv4 is selected, -4 will be added to the command line If IPv6 is selected, -6 will be added to the command line
* BIND - add support for IPv6 reverse zonesStuart Wyatt2015-04-092-2/+23
| | | | | | | Add a supplemental checkbox to "Reverse Zone" which further qualifies the reverse zone as an IPv6 reverse zone. The resulting zone name will be *.ipv6.arpa rather than *.ip-addr.arpa This change was originally submitted by https://github.com/cuteredstorm/pfsense-packages/commit/2b4e8084a92c8e9936f1b2fdca8272d29217c20a for Bug #4553
* BIND - add global settings for named.confStuart Wyatt2015-04-092-0/+19
| | | | | | Add field similar to custom options, but for global settings. Rather than being added to the options{} clause, these settings are added directly to named.conf. This allows the addition of items such as key{} and server{} clauses.
* BIND package code clean up - variable initialization and dead codeStuart Wyatt2015-04-071-17/+6
| | | | | | Initialize variables before .= concatenation Remove dead code (unused copy/paste of zone CONFIG settings not used in zone DB) Remove unused [$i] on $custom_root_zone and initialize
* BIND package code clean upStuart Wyatt2015-04-077-1131/+1229
| | | | | | | | Code cleanup to reflect coding style guidelines and consistency Tabs only, always uses braces, spacing C/C++ style comments Use array_key_exists instead of key_exists $config[] keys are always enclosed in quotes and use single quotes for literals
* Remove wrong message, just one log level can be selected. It fixes #4144Renato Botelho2014-12-261-2/+1
|
* Clean up some of BIND text.Chris Buechler2014-11-285-45/+45
|
* fixed bind zone journal out of sync issue when updating zoneTaylor Lanclos2014-08-271-1/+1
|
* Bugfix: Slave zones honour allow transferOskar Johansson2014-05-161-1/+1
| | | Fix bug where slave zones didn't honour the allow-transfer setting and wrote "none" in the config at all times
* Fix call-time pass-by-reference in bind, bump.jim-p2014-05-092-2/+2
|
* bindcrocomo2014-03-201-28/+39
|
* Fixup URLs:Renato Botelho2014-03-182-9/+9
| | | | | | - Replace http by https - *.pfsense.com -> *.pfsense.org - www.pfsense.org/packages/config -> packages.pfsense.org/packages/config
* Enable built-in ACLs; Fix version.bind; Fix typoscrocomo2014-03-042-10/+16
| | | | | | | | | | | * Enable use of the built-in ACLs as per [1]. Especially 'localhost' and 'localnets' come in handy on large firewall installations. * Fix version.bind so that the server does not process queries at all as per [1], which is more secure. * Typo with listenon: Any -> any (more or less an esthetic fix) * Two minor indentation errors [1] http://ftp.isc.org/isc/bind9/cur/9.9/doc/arm/Bv9ARM.ch06.html
* Fix indentation of custom optioncrocomo2014-02-231-2/+2
|
* Fix logging facilitiescrocomo2014-02-231-1/+2
| | | Include 'named' in the list of $separatelogfacilities in system.inc so that messages ONLY show up in resolver.log (and not system.log as well).
* Typo s/bloc/blockcrocomo2014-02-231-1/+1
|
* Typo s/reveser/reversecrocomo2014-02-231-1/+1
|
* Update reverse zone for dhcp static mapmbfgit2014-02-031-3/+24
| | | Addresses Bug #3323, add PTR records for reverse zone.
* Fix typo s/pfsese/pfsenseRenato Botelho2013-12-301-3/+3
|
* bind - fix final . check for ipv6 addresses.Marcello Coutinho2013-12-121-1/+1
|
* bind - bump pkg versionMarcello Coutinho2013-11-111-0/+1
|
* Disable logging should not mean default loggingJean Cyr2013-11-101-0/+3
| | | | - Prevent bind from flooding logs when 'enable logging' is not checked.
* bind - optionally add static dhcp leases at zone A recordsJean Cyr2013-11-102-1/+18
| | | | | | | | | Similar to 'unbound' feature to avoid the need to duplicate static host addresses in both DHCP and BIND. - Add 'Register DHCP static mappings' checkbox to zone form - if checked, enumerate all static DHCP hosts and add to zone, such that their name can be resolved.
* bind - fix bind service starting while disabled on guiMarcello Coutinho2013-11-061-5/+10
|
* bind - fix ipv6 listening check and add SPF record to bind zone.Marcello Coutinho2013-11-062-3/+4
|
* bind - fix reverse zones after including $ORIGINMarcello Coutinho2013-10-281-1/+4
|
* bind - include custom zone records fieldMarcello Coutinho2013-10-252-12/+34
|
* bind -remove unsed functions and fix sync code for automatic option.Marcello Coutinho2013-10-252-20/+5
|
* bind - include dnssec backup to xml option, include a lot of logging options ↵Marcello Coutinho2013-10-244-30/+157
| | | | | | and forward it to resolver systemlog tab via syslog. add more info on sync tab
* bind - include redirect zone type, enable/disable zone option and fix sync codeMarcello Coutinho2013-10-234-28/+87
|
* bind - bump version and change acl field descriptionMarcello Coutinho2013-10-181-3/+6
|
* bind - fix chroot dev devices again, include dsset info on gui for dnssec zones.Marcello Coutinho2013-10-184-27/+83
| | | | | Encode custom options with base64. sync code change zone type to slave on backup servers
* bind - add inline-signing dnssec optionMarcello Coutinho2013-10-182-7/+51
|
href='#n1117'>1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605