1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 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 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815
|
<?xml version='1.0'?>
<!DOCTYPE article PUBLIC "-//OASIS//DTD DocBook XML V4.1.2//EN" "http://www.oasis-open.org/docbook/xml/4.1.2/docbookx.dtd">
<article>
<articleinfo>
<title>IPplan - IP address management and tracking</title>
<revhistory>
<revision><revnumber>4.81</revnumber><date>2007-01-23</date><authorinitials>re</authorinitials><revremark
/></revision>
<revision><revnumber>2.91</revnumber><date>2002-05-17</date><authorinitials>re</authorinitials><revremark
/></revision>
</revhistory>
<abstract>
<para>IPplan is a free (GPL), web based, multilingual, IP address
management and tracking tool written in
<ulink url="http://www.php.net">php 4</ulink>, simplifying the
administration of your IP address space. IPplan goes beyond IP
address management including DNS administration, configuration
file management, circuit management (customizable via templates)
and storing of hardware information (customizable via templates).
IPplan can handle a single network or cater for multiple networks
and customers with overlapping address space. See the
introduction section for more.</para>
</abstract>
</articleinfo>
<para><ulink url="http://sourceforge.net"/></para>
<sect1 id="intro">
<title>Introduction</title>
<para>IPplan is a web based, multilingual, IP address management
and tracking tool based on <ulink url="http://www.php.net">php
4</ulink>, simplifying the administration of your IP address space.
IPplan can handle a single network or cater for multiple networks
with overlapping address space.</para>
<para>
Current functionality includes
<itemizedlist>
<listitem>
<para>internationalization</para>
</listitem>
<listitem>
<para>importing network definitions from routing tables</para>
</listitem>
<listitem>
<para>importing definitions from TAB delimited files and
<ulink url="http://www.insecure.org">NMAP's</ulink> XML
format</para>
</listitem>
<listitem>
<para>multiple administrators with different access profiles
(per group, allowing access per customer, per network
etc.)</para>
</listitem>
<listitem>
<para>define address space authority boundaries per
group</para>
</listitem>
<listitem>
<para>finding free address space across a range</para>
</listitem>
<listitem>
<para>split and join networks to make them smaller and larger
- ip definitions remain intact</para>
</listitem>
<listitem>
<para>display overlapping address space between
networks</para>
</listitem>
<listitem>
<para>search capabilities</para>
</listitem>
<listitem>
<para>an audit log - contents before and after change is
logged</para>
</listitem>
<listitem>
<para>statistics</para>
</listitem>
<listitem>
<para>keeping track of and sending SWIP/registrar
information</para>
</listitem>
<listitem>
<para>DNS administration (forward and reverse zones, import
existing zones via zone transfer)</para>
</listitem>
<listitem>
<para>template system to extend IPplan to contain site
specific information like circuit data, host configuration
data, asset information</para>
</listitem>
<listitem>
<para>device configuration file management</para>
</listitem>
<listitem>
<para>external stylesheet to change display look</para>
</listitem>
<listitem>
<para>triggers - every user event can call a user defined
function - useful to execute backend DNS scripts</para>
</listitem>
<listitem>
<para>external poller - scan subnets for active addresses to
gather usage statistics</para>
</listitem>
<listitem>
<para>IP address request system - allows users to request
static IP addresses from the database</para>
</listitem>
</itemizedlist>
</para>
<para>Two authentication methods are available - either
IPplan's own internal authentication scheme, or alternatively
make use of any external Apache authentication module. This
includes single sign on systems like SiteMinder or your own scheme
based on LDAP, or any other Apache compatible system.</para>
<sect2 id="copyright">
<title>Copyright Information</title>
<para>This document is copyrighted (c) 2002 Richard E and is
distributed under the terms of the Linux Documentation Project
(LDP) license, stated below.</para>
<para>Unless otherwise stated, Linux HOWTO documents are
copyrighted by their respective authors. Linux HOWTO documents
may be reproduced and distributed in whole or in part, in any
medium physical or electronic, as long as this copyright notice
is retained on all copies. Commercial redistribution is allowed
and encouraged; however, the author would like to be notified of
any such distributions.</para>
<para>All translations, derivative works, or aggregate works
incorporating any Linux HOWTO documents must be covered under
this copyright notice. That is, you may not produce a derivative
work from a HOWTO and impose additional restrictions on its
distribution. Exceptions to these rules may be granted under
certain conditions; please contact the Linux HOWTO coordinator at
the address given below.</para>
</sect2>
<sect2 id="disclaimer">
<title>Disclaimer</title>
<para>No liability for the contents of this documents can be
accepted. Use the concepts, examples and other content at your
own risk. As this is a new edition of this document, there may be
errors and inaccuracies, that may of course be damaging to your
system. Proceed with caution, and although this is highly
unlikely, the author(s) do not take any responsibility for
that.</para>
<para>All copyrights are held by their by their respective
owners, unless specifically noted otherwise. Use of a term in
this document should not be regarded as affecting the validity of
any trademark or service mark.</para>
<para>Naming of particular products or brands should not be seen
as endorsements.</para>
<warning>
<para>It is strongly recommended to make a backup of your
system before major installation or upgrades and to backup at
regular intervals.</para>
</warning>
</sect2>
<sect2 id="newversions">
<title>New Versions</title>
<para>See the CHANGELOG file for more information.</para>
</sect2>
<sect2 id="credits">
<title>Credits</title>
<para>Thanks to <ulink url="http://www.vhconsultants.com">
ValueHunt Inc.</ulink> for the use of their layout class used for
rendering all HTML pages.</para>
<para>Thanks to <ulink url="http://adodb.sourceforge.net/">
AdoDB</ulink> for the use of their generic database abstraction
class.</para>
<para>Thanks to <ulink url="http://vex.sourceforge.net">
Vex</ulink> for their Visual Editor for XML used to generate the
IPplan documentation.</para>
<para>Thanks to <ulink url="http://phplayersmenu.sourceforge.net">
The PHP Layers Menu System</ulink> for their menu system.</para>
</sect2>
<sect2 id="feedback">
<title>Feedback</title>
<para>Feedback is most certainly welcome for this document.
Without your submissions and input, this document wouldn't
exist. Please send your additions, comments and criticisms to the
following email address : <email>ipplan@gmail.com</email>.</para>
</sect2>
<sect2 id="translations">
<title>Translations</title>
<para>See the INSTALL and TRANSLATIONS files on how to enable
multilingual support and how to do a translation to your own
language. Doing a translation does not require any programming
experience. Current languages supported are English, Bulgarian,
French - Auto Translation, German - Auto Translation, Italian -
Auto Translation, Norwegian - Auto Translation, Portuguese - Auto
Translation and Spanish - Auto Translation.</para>
<para>Nickola Kolev for the Bulgarian translation - nikky at
mnet.bg.</para>
<para>Conrado Pinto Rebessi for the Brazillian translation -
conradopinto at yahoo.com.br</para>
<para>Tadashi Jokagi for the Japanese transalation - elf2000 at
users.sourceforge.net</para>
<para>Vladimir Leshchenko for the Russian translation - worker at
smtn.stavropol.ru </para>
</sect2>
</sect1>
<sect1 id="requirements">
<title>Requirements</title>
<para>IPplan requires a working web server installation. Currently
the <ulink url="http://httpd.apache.org">Apache</ulink> web server
is preferred, but php as an ISAPI or CGI module on IIS works too -
follow the appropriate installation instructions in the IPplan
directory (INSTALL-IIS+MSSQL). Apache works just fine on Windows
platforms too. For installing Apache on a Windows platform, follow
<ulink url="http://httpd.apache.org/docs/windows.html">
these</ulink> instructions. Or you can use
<ulink url="http://www.appservnetwork.com/">AppServ</ulink> or
<ulink url="http://www.wampserver.com/en/index.php">
WampServer</ulink> which are complete installation packages for
Apache, MySQL and PHP for Windows - just add IPplan by following
the installation instructions in the IPPLAN-WINDOWS file (part of
IPPlan).</para>
<sect2 id="databases">
<title>Databases</title>
<para>IPplan requires a working database installation. The
following databases currently work:</para>
<itemizedlist>
<listitem>
<para><ulink url="http://www.mysql.com">MySQL 3.23.15 or
higher</ulink> (preferred)</para>
</listitem>
<listitem>
<para><ulink url="http://www.postgresql.org">PostgreSQL 7.1
or higher</ulink></para>
</listitem>
<listitem>
<para><ulink url="http://www.oracle.com">Oracle 9i or
higher</ulink> (SQL99)</para>
</listitem>
<listitem>
<para>Microsoft SQL server (both 7 and 2000)</para>
</listitem>
</itemizedlist>
<para>The following may work, but are untested - Sybase. In fact,
any database that supports SQL99 compliant joins, in particular
LEFT JOIN, should work. See limitations section below for
more.</para>
<para>The web scripting language <ulink url="http://www.php.net">
php 4.1 or higher</ulink> must also be installed as a module in
Apache (NOT as a cgi). Php must have the preferred database
driver compiled in and enabled. See the respective web sites and
installation documents for more detail. IPplan works just fine
with a combination of the Apache web server and php on a Windows
platform - just read the relevant installation instructions for
Windows carefully.</para>
<tip>
<para>IPplan is also known to work in a distributed, replicated
MySQL environment with multiple database servers. See
<ulink url="http://www.oreilly.com/catalog/hpmysql/chapter/ch07.pdf">
www.oreilly.com</ulink> for more information.</para>
</tip>
</sect2>
<sect2 id="addons">
<title>Additional features</title>
<para>To enable SNMP support, you will require the
<ulink url="http://sourceforge.net/projects/net-snmp">
ucd-snmp</ulink> package installed and configured in your
environment. This must also be activated in the php
configuration. SNMP support is only required if you wish to read
routing tables directly from routers.</para>
</sect2>
</sect1>
<sect1 id="installation">
<title>Installation</title>
<para>Follow the instructions for your platform and database in the
INSTALL files in the IPplan directory.</para>
<sect2 id="custom">
<title>Customization</title>
<para>IPplan is customizable in many ways. See the sections on
templates, triggers and pollers. You can also extend the menu
system to include your own custom menus for other systems at your
site - see the config.php file for an example.</para>
</sect2>
</sect1>
<sect1 id="downloads">
<title>Downloads, bugs and forums</title>
<para>You can report bugs, contribute to forums and download it
<ulink url="http://sourceforge.net/projects/iptrack">here</ulink>
and look at the latest
<ulink url="http://cvs.sourceforge.net/viewcvs.py/iptrack/ipplan/TODO?view=markup">
TODO</ulink> and
<ulink url="http://cvs.sourceforge.net/viewcvs.py/iptrack/ipplan/CHANGELOG?view=markup">
CHANGELOG</ulink>.</para>
<sect2 id="screenshots">
<title>Screenshots</title>
<para>You can find some screen shots <ulink url="screenshots">
here.</ulink></para>
</sect2>
</sect1>
<sect1 id="modes">
<title>Mode of operation</title>
<para>There are two modes of operation, one can be classified as a
services company and the other as an ISP.</para>
<sect2 id="mode-services">
<title>Services company</title>
<para>As a services company your primary use of IPplan will be to
manage individual IP address records and the address plan of one
or more customers.</para>
</sect2>
<sect2 id="mode-isp">
<title>ISP</title>
<para>In ISP mode, you will assign blocks of IP address space to
your customers. In this mode, you will not be concerned at all
with individual IP address records and how the customer breaks
down his assigned address space. When you operate as an ISP, you
may also generate SWIP/registrar entries, which are only useful
if you deal directly with ARIN or any other registrar. (SWIP is
enabled in the config.php file, see ARIN
<ulink url="http://www.arin.net/minutes/tutorials/swipit.htm">
tutorial</ulink> for more details). All the relevant
SWIP/registrar information is entered when the customer is
created.</para>
<para>When using this mode, I suggest creating a dummy customer
which holds all the allocated address space from your regional
registrar (ARIN?) already broken up into the various blocks that
you will eventually assign to your customers. All these blocks
should be called "free" to allow them to be found using
the "Find free" menu option. Once you are ready to
assign a block, create a new customer with all the relevant
SWIP/registrar information completed, go to your dummy customer
and move a block of address space to the newly created customer,
and finally generate a SWIP/registrar entry for the new block. In
this mode areas and ranges are not too relevant except for the
dummy customer (see concepts below). You may also need to create
a template for your registrar in the templates directory. If you
have done this, feel free to contribute it to IPplan.</para>
</sect2>
</sect1>
<sect1 id="concepts">
<title>Concepts</title>
<para>The flow of address management is based on the creation of
areas, then ranges which belong to areas, and finally, subnets
which belong to ranges. Actually, only subnets are required, but on
large networks it makes logical sense to group the network into
areas to ease administration and to reduce routing updates on the
network. There is a jpeg drawing included with the distribution
that graphically shows these relationships. The methodology
employed borrows significantly from OSPF routing concepts which are
explained more fully
<ulink url="http://www.cisco.com/univercd/cc/td/doc/cisintwk/ito_doc/ospf.htm">
here</ulink>.</para>
<sect2 id="deployment">
<title>Deployment strategy</title>
<para>So in a new installation, first create the areas, then
create ranges adding them to areas, and finally create subnets.
Searching is now a simple matter of selecting an area which will
display all the ranges for the area, or selecting no area and
simply selecting a range from the total list of ranges, or simply
selecting a base network address.</para>
<note>
<para>Within a customer or autonomous system, no overlaps of
address space is allowed. This follows standard IP addressing
rules. You can have overlapping ranges/aggregates, but the
default behaviour of ranges also prevents overlaps. This can be
changed in the config.php file.</para>
</note>
<para>To handle challenges like NAT or other overlapping address
space, you will be required to create multiple autonomous
systems. See 'Searching' below how to see information
across multiple autonomous systems.</para>
</sect2>
<sect2 id="linking">
<title>Linking addresses</title>
<para>IP address records can be linked together. This allows one
address or multiple addresses to reference another address or
addresses. Using this feature allows for the referencing of NATed
addresses or having a link to a loopback address of a device.
Linking is done on the IP address details page by completing the
"Linked address" field. Once the field is completed,
you can follow the link. The link also appears on subnet summary
pages.</para>
<para>You can also link many addresses in one go by choosing
multiple addresses in the "Select multiple addresses to do a
bulk change" window, then completing the "User"
field as follows:</para>
<programlisting>LNKx.x.x.x userinfo</programlisting>
<para>The LNK identifier must be in uppercase, followed by
exactly one valid IP address with no spaces, then followed by an
optional space and user description. After the page is submitted,
the embedded LNK will vanish.</para>
<note>
<para>If the destination record of a linked address does not
exist, a record will automatically get created pointing back to
the source address, but only if the destination subnet exists.
This is to signal the "Find Next Free" address logic
of the subnet that the destination address is used.</para>
</note>
</sect2>
</sect1>
<sect1 id="admin">
<title>Administration</title>
<para>The access control is divided up into three layers and
revolves around the creation of groups:</para>
<sect2 id="admin-user">
<title>Admin user</title>
<para>Firstly you will need to create users and groups using the
admin user defined in the config.php script. The admin user can
only be used on the admin pages. Once you are done with the admin
functions, you will be required to re-authenticate as one of the
newly created users as soon as you access functions on the main
index page.</para>
</sect2>
<sect2 id="customer-access">
<title>Customer access</title>
<para>When a customer is created, a group must be assigned to the
customer. This will be the customers admin group and all members
of this group can create and delete both subnets, ranges, areas
and individual IP address records for the customer.</para>
<para>When the subnet is created, the creator will choose a
subnet admin group.</para>
</sect2>
<sect2 id="subnet-access">
<title>Subnet access</title>
<para>The users assigned to the group that has subnet access can
only modify individual IP records for that subnet.</para>
<para>Initially I would create three groups, one group that can
create customers, one group that can create subnets, areas and
ranges, and another group which can only modify individual IP
records. Normally in large networks the people that modify IP
records are not the same people that administer routers and
configure the IP address space.</para>
<para>If a group is set to see only a particular customer, the
same group needs to be used for all operations for the customer.
The side effect to this is that the users assigned to the group
have full access to the customer and can make any changes to the
customers data, including creating and deletion of subnets. This
is not ideal and will be changed in future.</para>
<tip>
<para>Groups can be created that prevent certain users from
changing an administrator defined number of reserved addresses
at the start of a subnet.</para>
</tip>
</sect2>
<sect2 id="g-a-b">
<title>Group authority boundaries</title>
<para>Areas of responsibility can be assigned to a group, thus
limiting what address space a group can create networks in. The
default behavior allows administration anywhere. Care should be
taken when using this feature as changing the boundaries at a
later stage may orphan some parts of the database and yield data
inaccessible.</para>
<note>
<para>If a user belongs to multiple groups and one of the
groups does not have boundaries defined, then the user is
granted all access. Thus boundaries are a sum of all the
boundaries the user belongs to.</para>
</note>
<tip>
<para>Bounds are also useful to create users that only have
read access to the IPplan information. Select the "Read
Only" option when creating a new group.</para>
</tip>
</sect2>
</sect1>
<sect1 id="circuit">
<title>Circuit administration, host configuration data and asset
information</title>
<para>Using the template capability IPplan can be extended to
contain custom information about your site. You can add any number
of custom fields for your site. See the section on
"Templates" for further information.</para>
</sect1>
<sect1 id="file">
<title>Device configuration file management</title>
<para>Any number of files can be attached to individual IP records.
Using this feature, configuration data (text and binary, drawings
etc) for devices can be stored and managed by IPplan.</para>
</sect1>
<sect1>
<title>DNS administration</title>
<para>Both forward and reverse zones can be created via the web
interface. Zone domains are forward zones - there can be as many
forward zones as you like per customer. Each of these can be unique
or they can even overlap with other customers.</para>
<para><emphasis>Forward Zones:</emphasis></para>
<para>To create a forward zone, select a customer and select
"Add a DNS zone". The next screen will allow you to enter
information for the new zone. The domain name must be entered as
must at least two nameservers.</para>
<para>At this point you have the option of creating a new zone from
scratch, cloning (copying) a zone from an already existing zone
called "template.com", or importing an existing zone via
a zone transfer. If you do a zone transfer, the PRIMARY or
SECONDARY DNS servers must be directly contactable from the
webserver on which IPplan is running. If the DNS server is not
contactable an error will be returned.</para>
<para>If a domain is created from scratch, the domain name must be
entered as must at least two upstream DNS servers. The DNS servers
are automatically entered for you if the customer record (created
via "Create a new customer/autonomous system") contains
DNS servers. This is a good way to not have to manually add the DNS
servers for each new zone created. The DNS servers can be changed
and will be independent per zone created. At the bottom of the
Add/Edit screen is place to enter two zone file paths. In future
this can be used to determine where the zone must be saved or on
what DNS server the zone must be created - currently these fields
do nothing.</para>
<para>The next step is to add individual records to the newly
created zone. Do this under the "Zone DNS records" main
menu function. Select the customer, select the domain and add a
host. The "Host name" refers to the left hand side of a
bind zone file, then the type (A, CNAME or MX - more types in
future) and the "IP/Hostname" refers to the right hand
side of the zone file. In future the screen will change depending
on the record type you select and more record types will be
possible. The sort order determines the placement of the record in
the zone and on the screen. This is a number and the default is
9999 or the end of the file. If you want to insert records between
other records, work out a numbering plan.</para>
<para>In future this will be automatic with options to "Insert
before" and "Insert after". Currently you can
renumber the values retaining the order of the entries.</para>
<para><emphasis>Reverse zones:</emphasis></para>
<para>To create reverse zones is very much like creating a forward
zone, except that there are no detail records. All that is required
is to create a starting address and mask. The actual reverse
records are extracted based on the start and mask from the IP
records when you create a subnet and add records to the subnet. The
field used is the host name field and all invalid information in
this field will be ignored with a warning.</para>
<para>Once your forward and reverse zones are created, each time a
change is made you will be required to export the zone by clicking
on the "Export zone" option. The output generated is in
XML and must then be parsed using and XSLT processor into a format
compatible with your DNS server.</para>
<sect2 id="export">
<title>Handling exported zones</title>
<para>The zone files are created in the directory specified by
the DNSEXPORTPATH variable in the config.php file. The files are
in XML format and are created when a user hits the Export option
either on the DNS page or Reverse zone page. The files have a
format of zone_ or revzone_ followed by the zone name followed by
a trailing unique identifier, which is operating system
dependent. The file has a .xml extension.</para>
<para>If a template is attached to the forward zone, the template
fields will also appear in the exported XML file with tag names
the same as the template field names.</para>
<para>These files must be processed using a XML stylesheet
processor into a format suitable for your DNS server, and then
placed into the correct location and activated by your DNS
server. This is beyond the scope of IPplan and will require
custom scripts for your installation. Contributions are
welcome.</para>
<para>Sample procedure:</para>
<para>You will require a script for your environment that
periodically runs to check for new zone files that have been
added to the output directory. You will probably use cron to do
this. Once your script finds a file, you can extract the file
paths saved in IPplan using a simple grep:</para>
<para>
<programlisting>grep -A 1 '<primary>' /tmp/revzone_FS9mEU|grep -v '<primary>'</programlisting>
</para>
<para>This gives me the primary file path. Once you have the
destination path, process the file and copy the output by
whatever means your environment uses to the target DNS server. I
would suggest using scp with a public key on the remote server to
prevent having to type in user id's and passwords during the
copy process.</para>
<para>Processing the file:</para>
<para>A sample XSLT stylesheet can be found in the contrib
directory to transform the forward zone XML (files starting with
zone_) into a bind8 or higher compatible zone file. I use
xsltproc from the libxslt package (
<ulink url="http://xmlsoft.org/XSLT/">
http://xmlsoft.org/XSLT/</ulink>) which should be installed on
most modern linux systems. A different stylesheet (.xsl file)
will be required for each DNS server system that you use - I have
no intention of writing style sheets for all the various DNS
servers out there, but you are more than welcome to send me style
sheets for different DNS servers to be included with
IPplan.</para>
<para>A sample command is:</para>
<para>
<programlisting>xsltproc bind9_zone.xsl zone_</programlisting>
</para>
<para>For sample XML input of:</para>
<para>
<programlisting><?xml version="1.0" ?>
<zone domain="test.com">
<soa serialdate="20040626" serialnum="04" ttl="21600" retry="3600" refresh="86400" expire="604800" minimumttl="21600" email="" />
<record><NS><iphostname>ns1.example.com</iphostname></NS></record>
<record><NS><iphostname>ns2.example.com</iphostname></NS></record>
<record><NS><iphostname>ns3.example.com</iphostname></NS></record>
<record><NS><iphostname>ns4.example.com</iphostname></NS></record>
<record><A><host>myhost</host><iphostname>10.10.10.1</iphostname></A></record>
<record><CNAME><host>myhost-alias</host><iphostname>myhost</iphostname></CNAME></record>
<record><MX><host></host><iphostname>mailhost</iphostname></MX></record>
</zone></programlisting>
</para>
<para>Generating output as follows:</para>
<para>
<programlisting>$ORIGIN test.com.
$TTL 86400
@ IN SOA test.com. dnsadmin.test.com. (
2004062604 ; serial
21600 ; refresh
3600 ; retry
604800 ; expire
21600 ) ; minimum TTL
IN NS ns1.example.com.
IN NS ns2.example.com.
IN NS ns3.example.com.
IN NS ns4.example.com.
myhost IN A 10.10.10.1
myhost-alias IN CNAME myhost
IN MX 10 mailhost</programlisting>
</para>
</sect2>
<sect2 id="individual">
<title>Automatic updating of zone records</title>
<para>IP subnet records (which equate to zone PTR records) and
forward zone A records will automatically get syncronised and
updated provided a number of criteria are fulfilled.</para>
<para>If a DNS A record is created or updated, and there is
exactly one A record across all the customers zones matching one
IP subnet record, then the IP record hostname field will be
updated with the A record hostname field.</para>
<para>If an IP record hostname field is updated, then the zone A
record field will be updated if there is exactly one A record
matching the IP record across all the customers zones.</para>
<para>If an IP record hostname field is updated and a matching A
record cannot be found, then an A record will automatically be
created in the matching domain provided there is only one
matching domain. This will only happen if the DNSAUTOCREATE
setting is TRUE in config.php.</para>
<para>Under all the above conditions a warning message will be
displayed stating that an update occured. The appropriate log
entries will be made and triggers will fire.</para>
</sect2>
</sect1>
<sect1 id="registrars">
<title>Dealing with registrars</title>
<para>Registrars are interacted with by email. IPplan can manage
all the records and manage all the fields and data required to
generate the registrar updates, no matter what the registrar is
(ARIN, RIPE, APNIC etc). Before these functions will work, the
correct config variables need to be set - these include the
REGENABLED, MAINTAINERID, REGISTRY, REGEMAIL etc. Only users
belonging to the customer admin group can send these updates.
Additional fields can be added to the IPplan display pages if
required, and these fields are also available to the registrar
templates.</para>
<para>To generate updates, the required registrar template is
selected. IPplan includes a limited number of templates, but these
are fully customizable and simple to create and modify - see the
section on "Templates" later in the manual. Once the
template is selected, the fields from the database are substituted
into the template file and the output is displayed on the screen.
The user then selects which updates should be sent to the
registrar. The selected updates are then sent via email and the
date the updates were sent are recorded in the IPplan
database.</para>
</sect1>
<sect1 id="searching">
<title>Searching</title>
<para>Creating a special customer called 'All' allows
searching for information across all the available
customer/autonomous systems using the 'Display subnet'
function. This special customer can contain areas and ranges that
limit the scope of searches, just like normal customers. Using this
feature allows a user to see the entire network picture in one
view.</para>
<tip>
<para>When creating new subnets, it is also beneficial to create
unused subnets with a a description of either 'free' or
'spare'. These can be searched for at a later stage
using the 'Find Free' function.</para>
</tip>
<tip>
<para>It may also be beneficial to give ASE (Autonomous System
External, networks not local to yours) a special handle like
EXTERNAL so that they can be searched for at a later stage. These
networks often appear in routing tables as static routes to third
parties (not via the Internet).</para>
</tip>
<sect2 id="individual">
<title>Searching for individual address details</title>
<para>Searching can also be done on individual addresses using
the 'Match any IP address in subnet' option of the
'Display subnet information' option. This is useful for
finding which networks, either for a single customer, or for all
customers an IP address belongs to. Using this option makes it
easy to find the offending network in a complaint situation if
you are an ISP.</para>
<para>If matching by IP address, you will automatically jump to
the IP address edit page if the search is unique and matches only
one subnet from one customer. If you use the 'All'
customer you will need to click on the relevant customer network
you wish to work with.</para>
</sect2>
<sect2 id="areas">
<title>Searching areas and ranges</title>
<para>You can also create areas and ranges to search across only
certain address space ranges. Areas are containers for ranges.
Selecting an area that has ranges attached will search only in
those ranges. Select an area and not selecting a range will
search across all the ranges in the area.</para>
<para>Depending on what settings have been selected in the
config.php file, ranges may either never overlap (the default),
have overlaps within an area only, or overlap in anyway,
including having duplicate ranges.</para>
<note>
<para>Areas with no attached ranges will not display in the
"Area" selection list until ranges are added to the
area. Areas with no ranges yeild no search results.</para>
</note>
</sect2>
</sect1>
<sect1 id="config">
<title>Config file</title>
<para>A a number of settings that can be changed in the config.php
file. These include the database connection information, admin user
and password, and the number of lines displayed in tables. See the
comments in the config.php file for more details.</para>
</sect1>
<sect1 id="import-data">
<title>Importing data</title>
<para>Data can be imported by the admin user via TAB delimited text
files or from output generated in XML format by
<ulink url="http://www.insecure.org">NMAP</ulink>.</para>
<sect2 id="tab">
<title>TAB delimited data</title>
<para>Network definitions or individual ip records can be
imported in TAB delimited format.</para>
<para>The order of columns for network definitions or subnet
descriptions are (three columns required): The first column
contains the IP base address, the second the description and the
third the mask either in dotted decimal format or in bit
format.</para>
<para>The order of columns for importing IP records should be
(six columns required): The first column contains the IP address,
the second the user, the third the location, the fourth the
description, the fifth the hostname and the sixth the telephone
number.</para>
<para>If you have more than six columns, the remaining columns
will be entered into the user defined fields specified in the
template. The order will be the order the fields are defined in
the XML template file.</para>
<epigraph>
<para>See the templates section for details on how the
templates work.</para>
</epigraph>
</sect2>
<sect2 id="nmap">
<title>Importing using NMAP</title>
<para>A typical application for this would be to obtain data for
networks that there are no records for. NMAP would be used to
obtain the host info of all the addresses that are active on the
network. Once this is done, the data can be read into IPplan. The
NMAP parameters required by IPplan to generate a valid import
file are:</para>
<programlisting>Â -sP -oX output.xml</programlisting>
<para>To speed up the process, you can add -n to not resolve host
names. The import process also understands the -O operating
system detection parameter. To use -O, you will need to drop the
-sP parameter. Using -O increases scanning time
significantly.</para>
<para>As of version 3.93 of nmap, the -sP option also returns the
MAC address which will be recorded in the MAC address field of
the subnet IP record. MAC addresses only appear if the scan was
done using root user - thus the MAC address will not appear if
nmap was executed through php and the webserver. You can set the
S bit on the nmap binary, but this is not advised due to security
concerns.</para>
</sect2>
</sect1>
<sect1 id="templates">
<title>Templates</title>
<para>Various forms of templates are available. These include
templates that add additional, custom fields to the IPplan display
pages (different templates can be added to the customer, subnet and
ip address record pages), and templates that then munipulate the
data contained in the IPplan databases to generate output for
various registrars. All of these templates are fully administrator
customizable with display fields added to customer and subnet pages
automatically available in output templates used to generate
registrar updates.</para>
<sect2 id="iptemplates">
<title>Customer, Subnet, DNS and IP address templates</title>
<para>The administrator can define a custom template in IPplan to
allow the addition of as many custom fields to the customer,
subnet, DNS forward zones and ip address record pages as the
administrator wishes. This functionality allows flexibility in
the way data is added to the database. Some uses for these
templates include tracking asset information or WAN circuit
information, the management of DHCP address space, dealing with
additional and ever changing registrar requirements.</para>
<para>As mentioned there are different template files for the
customer, subnet, DNS and IP address pages. The template for each
of these pages has a different name:</para>
<para><varname>Customer pages - custtemplate.xml</varname></para>
<para><varname>Subnet pages - basetemplate.xml</varname></para>
<para><varname>DNS forward zones -
fwdzonetemplate.xml</varname></para>
<para><varname>IP address pages - iptemplate.xml</varname></para>
<para><varname>IP address pages (network address) -
iptemplate-network.xml</varname></para>
<para>A sample template called iptemplate.xml.sample can be found
in the /ipplan/templates/display directory.</para>
<para>If a template called called iptemplate-network.xml exists,
then this template will be used for network addresses (the first
address of the subnet). This is useful to define subnet wide
information like VLAN id's, telco line numbers, router
configurations etc. If the iptemplate-network.xml does not exist,
then the iptemplate.xml template will be used for network
addresses.</para>
<para>The above templates are generic and act across all
customers, and thus all fields are the same for all customers.
Unique templates can be created per customer by adding the
customer id to the template name. To obtain the customer id (a
number), use the Admin/Maintenance function within IPplan. To
create a unique IP address template for customer id 25, place a
template file called iptemplate-25.xml in the
/ipplan/templates/display directory. This template will override
the default template for customer 25 only.</para>
<sect3 id="format">
<title>Format of Customer, Subnet and IP address template
files</title>
<para>The templates are well formed XML files with a .xml
extension and should be stored in the /ipplan/templates/display
directory. You should use the xmllint tool to test the XML file
before using it with IPplan - no errors should be
returned.</para>
<para>The standard iptemplate.xml file adds a free form text
field to all the ip address record pages and has this
definition:</para>
<programlisting><?xml version="1.0" ?>
<TEMPLATE>
<FIELD>
<DEFINITION NAME="info" DESCRIP="Additional information" TYPE="T" MAXLENGTH="10000" SIZE="80" ROWS="10" REGEX="" ERRMSG="Invalid field: Additional information" />
</FIELD>
</TEMPLATE></programlisting>
<para>A field definition to add a select drop down list:</para>
<para>
<programlisting> <FIELD>
<DEFINITION NAME="select" TYPE="S" DESCRIP="This is select list with two options" DEFAULT="2">
<SELECT OPTION="Option 1" VAL="1" />
<SELECT OPTION="Option 2" VAL="2" />
</DEFINITION>
</FIELD></programlisting>
</para>
<para>The template file must be surrounded with
<TEMPLATE> statements. Note that XML tags are case
sensitive and must match as per the example. Each field is
contained in a <FIELD></FIELD> statement. Each
field must have exactly one <DEFINITION> line. Any line
with an error will be silently ignore! The following are valid
for a definition:</para>
<para><varname>NAME</varname></para>
<para>This is the field name used internally to track the names
of the variables. Can contain letters and numbers only - no
spaces or anything else.</para>
<para><varname>DESCRIP</varname></para>
<para>This is the description that will be displayed above the
field.</para>
<para><varname>TYPE</varname></para>
<para>This is the type of the field. C for a character field
and T for a memo or multi-line field, S for a select drop down
list.</para>
<para><varname>DEFAULT</varname></para>
<para>The default value for the field the first time the field
is completed.</para>
<para><varname>MAXLENGTH</varname></para>
<para>This is the maximum number of characters a field can
consist of.</para>
<para><varname>SIZE</varname></para>
<para>This is the display length of the field on the screen -
if SIZE is less than MAXLENGTH, the field will scroll. SIZE may
not be more than MAXLENGTH.</para>
<para><varname>ROWS</varname></para>
<para>This is the number of rows to display on the screen -
only valid for text or multi-line fields.</para>
<para><varname>REGEX</varname></para>
<para>This is a regular expression to test validity of the
entered information. To test a field, use ^ and $ to signify
the start and end of the field, so something like</para>
<programlisting>^[a-zA-Z0-9]$</programlisting>
<para>ensures that the field only contains numbers and letters.
See <link>http://regexlib.com/</link> for more on regular
expressions.</para>
<para>Regular expressions are PERL compatible and use a /
character as the delimiter, thus if you want to match on a /,
you will need to escape the /. So to match a letter, / and a
number, this is the expression</para>
<programlisting>^[a-zA-Z\/0-9]$</programlisting>
<para>Regular expression | can be used for multiple matches.
Thus the following will match a field or a blank entry</para>
<programlisting>^[a-zA-Z\/0-9]$|^$</programlisting>
<para><varname>ERRMSG</varname></para>
<para>This is the error message that is displayed if the
regular expression match fails.</para>
<para><emphasis>Default template:</emphasis></para>
<para>The default template contains one field which is the
"Additional information" field of older versions of
IPplan. If you do not want this field, change the template or
delete the template entirely.</para>
<para><emphasis>Template rules:</emphasis></para>
<para>If you delete the template all fields will vanish and
cannot be accessed. IP records that have been completed with
fields from a template will not be lost, but records that do
not have template fields cannot have template fields added
until the template is either restored or similar fields are
added.</para>
<note>
<para>Deleting fields from a template results in existing
fields in the database with template data using a default
field definition. The data is not lost. It is not a good idea
to modify or change the template on a production system. Plan
the template fields carefully before implementing.</para>
</note>
</sect3>
</sect2>
<sect2 id="registrartemplates">
<title>Registrar templates</title>
<para>Templates for sending information to registrars should be
well formed XML stylesheets. See the existing templates in the
/ipplan/templates directory for examples. Currently only
the</para>
<programlisting><xsl:value-of select="variable"/></programlisting>
<para>tag is understood and all other XML tags are stripped, thus
only variable substitution is done. This is to prevent requiring
the XSLT php library to be compiled in. In future XML stylesheets
will be supported in full.</para>
<para>There are a number of special variables available during
the registrar output process which are defined in the config.php
file:</para>
<para>
<programlisting>source -> the REGISTRY config setting
maint -> the MAINTAINERID config setting
regid -> the REGID config setting
password -> the REGPASS config setting
date -> todays date in UTC format</programlisting>
</para>
<para>in addition to the standard customer page variables:</para>
<para>
<programlisting>ntsnum -> starting of IP address range
ntenum -> end of IP address range
ntname -> network name as defined in the
subnet description field
DNS:
hname1 -> DNS hostname 1
ipaddr1 -> Primary DNS server
hname2 -> DNS hostname 2
ipaddr2 -> Secondary DNS server
hname3 -> DNS hostname 3
ipaddr3 -> Third DNS server
.
.
.
hname10 -> DNS hostname 10
ipaddr10 -> Thenth DNS server
Contact:
org -> Organization
street -> Street
city -> City
state -> State
zipcode -> Zip code/Postal code
country -> Two letter country code
Technical contact:
nichandl -> Nickname/handle
lname -> Lastname
fname -> Firstname
mname -> Middle name
torg -> Organization
tstreet -> Street
tcity -> City
tstate -> State
tzipcode -> Zip code/Postal code
tcntry -> Two letter country code
phne -> Phone number
mbox -> Email address</programlisting>
</para>
<para>Plus any variables defined in a customer template
(custtemplate.xml) and also the subnet template
(basetemplate.xml) as described above will also be available. The
names of the variables will be the same as defined in the
customer template.</para>
<para>Thus the following basetemplate.xml file:</para>
<para>
<programlisting><?xml version="1.0" ?>
<TEMPLATE>
<FIELD>
<DEFINITION NAME="remarks" DESCRIP="Remarks" TYPE="C" MAXLENGTH="100" SIZE="100" ROWS="1" REGEX="" ERRMSG="RIPE remarks" />
</FIELD>
</TEMPLATE></programlisting>
</para>
<para>will provide the following additional variable to the
registrar template</para>
<para>
<programlisting>remarks -> Remarks field for subnet</programlisting>
</para>
<note>
<para>If there are duplicate variable names defined, the
variables in the basetemplate.xml file, then the
custtemplate.xml file appearing in the "Additional
information" section of the customer and subnet
administration pages will have precedence over any standard
variables.</para>
</note>
<para />
</sect2>
</sect1>
<sect1 id="dhcp">
<title>DHCP</title>
<para>A special sample template called basetemplate.xml.dhcp can be
used in place of the basetemplate.xml file to provide DHCP support.
This template works in conjunction with the DHCP export function of
IPplan. For a DHCP export to work, the subnet must have the correct
template, the subnet must be marked as DHCP and subnet address
descriptions must start with the 'DHCPRESERVED'
config.php variable. Once an export has been initiated, the
resulting output must be processed via an XML parser just like any
other export function of IPplan.</para>
<para>Multiple address pools can be simulated by adding numbers to
the end of the IP address decsriptions eg. 'Reserved - DHCP
pool 1'. Static assignments are dealt with automatically if an
IP address has a valid MAC address assigned.</para>
</sect1>
<sect1 id="triggers">
<title>Triggers</title>
<para>Every database event (create a customer, update an ip record,
export a DNS zone file etc) in IPplan can trigger an external user
defined function or script. This is useful to update and external
system like a DNS server once something in IPplan has
changed.</para>
<para>You will be required to write your own custom script to do
the required action. This script will be called from the
user_trigger() function in the ipplanlib.php script. See the
comments of this function for more details.</para>
<epigraph>
<para>A list of all the IPplan triggers and what information is
passed to the user_trigger() function can be found in the
TRIGGERS file.</para>
</epigraph>
</sect1>
<sect1 id="poller">
<title>External command line poller</title>
<para>The poller allows you to periodically scan subnets for
addresses that are active on the network. This information is then
logged in the IPplan database and will appear on the display subnet
page. You can find the poller script in the IPplan contrib
directory.</para>
<para>The scans are done using nmap, thus large networks can be
scanned rapidly. Subnets that are to be scanned get entered into a
plain text file, so maintenance is easy. Polling can be automated
by adding the poller to cron.</para>
<para>Firstly, you will need to create a file containing a list of
networks/addresses that you would like to poll. The file is a text
file with one address per line in the any format that the nmap
command understands (type nmap -h for more info).</para>
<para>
<programlisting>10.10.10.0/24
10.10.11.*
10.12.12.1</programlisting>
</para>
<para>Once you have created your file you will need to make sure
the poller is configured correctly. Edit the poller file and change
the path at the top to the correct place where the command line php
can be found on your system.</para>
<para>You can find the location by typing</para>
<para>
<programlisting>which php</programlisting>
</para>
<para>Next make sure that nmap can be found. Type</para>
<para>
<programlisting>which nmap</programlisting>
</para>
<para>and either update the NMAP statement in the IPplan config.php
file, or uncomment the NMAP define at the top of ipplan-poller.php
and update to reflect the correct path to nmap. This define will
override whatever is in config.php allowing a different NMAP to be
used. You may also leave config.php blank to prevent scanning from
within the IPplan web frontend.</para>
<para>Now run the ipplan-poller.php file with the -d option, or
navigate to the admin->maintenance page. This will dump a list
of customers and customer id's. You need to find the id of the
customer you want to update:</para>
<para>
<programlisting>php -q ipplan-poller.php -d</programlisting>
</para>
<para>
<programlisting>ID Description
2 Test
46 Test customer
47 Test customer 2</programlisting>
</para>
<para>Finally run the poller again with the correct command line
(assuming you want to update the customer called "Test
customer" which has id 46):</para>
<para>
<programlisting>php -q ipplan-poller.php -c 46 -f nmap.list</programlisting>
</para>
<para>If the configuration is correct and there are no errors,
there should be no output - the database is updated silently in the
background. Any address that was successfully polled will now have
a key in the "Pol" column on the IPplan display
pages.</para>
<para>
<programlisting>D polled today
W polled within last week
M last month
Y last year</programlisting>
</para>
<para>You can now add the above line to cron to scan certain
subnets periodically.</para>
<para>The following command line options are available with the
poller:</para>
<para>
<programlisting>IPplan poller v1.0
-h this message!
-q suppress check if tool is executed from the command line
-d dump a list of customers and customer id's
-f filename containing list of subnets to scan, one per line in address/bits format
see the NMAP manpage for examples
-hostnames resolve and populate hostnames
-time timestamps the scan at start and completion
-a create auditlog entries for newly added records
-c customer id to update
example: php ipplan-poller.php -d
php ipplan-poller.php -time -hostnames -f /tmp/nmap.lst -c 1
</programlisting>
</para>
<para>Using the -hostnames option will query the DNS when polling
addresses and update the host name field within IPplan with the DNS
name. Note that using this option could significantly increase
polling time, especially with incorrectly configured DNS servers.
Use the -time option to determine impact of using the -hostnames
option.</para>
<note>
<para>Security: You should use a different user and password to
access the database using the command line poller. I suggest
creating a user that can only SELECT, UPDATE and INSERT into the
ipaddr table, and SELECT from the base and customer tables. See
your database administrator or manual for more details.</para>
</note>
</sect1>
<sect1>
<title>IP address request system</title>
<para>IPplan has a request feature whereby users can request
individual IP addresses by completing a form. This form is then
submitted into the IPplan database and via email to an
administrator or help desk account for processing. When the
administrator processes the request, all outstanding requests for a
particular customer/AS will appear on the IP address modify screen.
The administrator picks the relevant address from the list and all
the fields are automatically completed with the request details.
The administrator can then change some of the fields details before
submitting. When the form is submitted, the request is
deleted.</para>
<para>Up to 100 outstanding requests can be active at one time
(this is configurable by changing a variable at the start of the
requestip.php script). This is to prevent denial of service on the
database as the request page is not authenticated. Excess junk
requests can be cleared via an admin only option on the maintenance
page.</para>
<para>Request email addresses are set in the config file. The list
of visible customers/AS's that addresses can be requested for
are also set via config options. The default is that addresses can
be requested for all customers.</para>
<para>The request page also has the top menu structure disabled by
default (this can be enabled by changing a variable at the start of
the requestip.php script). Disabling the menu allows the page to be
used as a generic request page on a sites intranet server without
confusing regular users with menu options they cannot use or
access.</para>
<tip>
<para>If an email field exists in the iptemplate.xml file, this
field will be used to popup an email window, allowing the newly
actioned requested address to be emailed back to the requester.
The email window will only display after Submit has been pressed
and the user has entered a valid email address.</para>
</tip>
<para>A sample definition for this field is as follows:</para>
<programlisting><FIELD>
<DEFINITION NAME="email" DESCRIP="Email address" TYPE="C" MAXLENGTH="100" SIZE="100" ROWS="1" DEFAULT="" REGEX="" ERRMSG="Invalid field: Additional information" />
</FIELD></programlisting>
<para>See the section on templates for more information.</para>
<para>If a valid email address is found in the above field you will
be given the option to email the details back to the requester. The
gateways are site specific and can vary - manual completion of this
field is required unless one of the subnet addresses has a
description field starting with GW. This address will then be used
as the gateway address in the email.</para>
</sect1>
<sect1>
<title>Authentication schemes</title>
<para>IPplan supports either its own internal authentication
scheme, or an external scheme based on the Apache webservers
authentication modules. To use an external scheme, change the
setting in the config.php file. Next, place the relevant .htaccess
file in the IPplan user subdirectory (/ipplan/user). Do not place
an equivalent file in the admin subdirectory as the admin account
cannot be overridden.</para>
<note>
<para>When using the external authentication method, IPplan never
prompts for a userid and password. It is the responsibility of
the external module to do the prompting, if any. IPplan uses the
credentials supplied and matches them to the IPplan userid
records to determine if access should be granted.</para>
</note>
<important>
<para>The relevant users requiring access to IPplan must still be
created via the IPplan admin interface, but no password
information is required as this is overridden by the external
authenticator.</para>
</important>
<para>If the user is removed from the external authenticators
database (ldap, radius etc), the user will no longer be able to log
in to IPplan even if the account still exists in IPplan. This
scheme only handles single signon and password changes, not single
point of administration.</para>
<para>Make sure that the external authenticator only returns the
userid in the php REMOTE_USER variable. Ldap (or auth_ldap) by
default will return the entire DN, but this can be configured to
return only the userid. From the auth_ldap docs at
<ulink>http://www.rudedog.org/auth_ldap/1.6/auth_ldap.html</ulink>
ensure that the AuthLDAPRemoteUserIsDN is set correctly. You will
also need to look at the AuthLDAPGroupAttributeIsDN
attribute.</para>
<para>Read the instructions in config.php carefully for debug
tips.</para>
<para>External authentication was tested against SiteMinder and the
Apache <ulink url="http://www.rudedog.org/auth_ldap/">
auth_ldap</ulink> module. The
<ulink url="http://www.ja-sig.org/products/cas/index.html">CAS
authentication</ulink> module is also supported - there are special
config.php variables to support this configuration.</para>
<warning>
<para><emphasis>THE HTTP BASIC AUTHENTICATION SCHEME DOES NOT
ENCRYPT USER-IDS AND PASSWORDS TRANSMITTED TO THE WEBSERVER - IT
IS RECOMMENDED THAT IPPLAN IS INSTALLED ON AN SSL PROTECTED
WEBSERVER ON PRODUCTION SYSTEMS.</emphasis></para>
</warning>
</sect1>
<sect1 id="problems">
<title>Problems</title>
<itemizedlist>
<listitem>
<para>PHP's IP management functions and binary arithmetic
functions are seriously broken (see
<ulink url="http://www.php.net/bugs.php?id=10924">bug</ulink>
report logged) Due to this limitation, the biggest subnet that
can be created is limited to 254k hosts.</para>
</listitem>
<listitem>
<para>This brokenness also prevents the use of the ip2long()
and long2ip() functions introduced with php 4.x. I have used
php only functions called inet_aton() and inet_ntoa().</para>
</listitem>
<listitem>
<para>SNMP appears to be broken on Redhat 7.2 systems. Try
following these
<ulink url="https://sourceforge.net/forum/forum.php?thread_id=627391&forum_id=101033">
instructions</ulink> for help.</para>
</listitem>
</itemizedlist>
</sect1>
<sect1 id="limitations">
<title>Limitations</title>
<itemizedlist>
<listitem>
<para>Due to the authentication scheme used, only the Apache
web server is supported currently. PHP installed under IIS as a
cgi is reported to work too.</para>
</listitem>
<listitem>
<para>IPplan can be run with php configured for safe_mode=on
and register_globals=off.</para>
</listitem>
<listitem>
<para>IPplan was developed using MySQL as a database. Using
other databases require workarounds for some functionality
which is not optimal. During my own tests, speed was visibly
faster using MySQL.</para>
</listitem>
</itemizedlist>
</sect1>
<sect1 id="faq">
<title>Questions and Answers (FAQ)</title>
<para><emphasis>Check the forums on SourceForge
too.</emphasis></para>
<para>The FAQ is no longer maintained in the manual - check online
at the <ulink url="http://iptrack.sourceforge.net">IPplan
homepage</ulink>.</para>
</sect1>
</article>
|