1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
#!/usr/bin/perl
$width = 556;
$height = 303;
$y_start = 10;
$border = 10; #- for leftish text
@text = ([ N("<b>Multi Network Firewall,</b>"), center => 1 ],
[ N("The Mandrakelinux security solution"), center => 1 ],
' ',
N("Multi Network Firewall (MNF), combines firewall, Virtual Private Network (VPN), intrusion detection, and traffic management functions into an easy-to-use product!"),
' ',
N("Through a secure Web interface which utilizes finely-tuned wizards, network administrators can easily build a network, define access rules, filter and monitor Internet content, and perform administration tasks!"),
' ',
N("For more information about this product, visit: <b>www.mandrakesoft.com</b>"));
|