On Sunday 25 December 2016 12:42:51 Nicklas Karlsson wrote: > Yes indeed it would and I could or really should change this. > > I however do not have anywhere to store so that it could be accessed > via pulic access to internet.
That is not so hard to do. Two things need to work, actually 3. 1. Your local network should be protected from the drive by kids, and the best way to do that is with a router, cabled between your modem, and an 8 port switch. The switch needn't be a special, but the router will need the flash memory resources to allow you to reflash its firmware with something like dd-wrt, whose source is German and has NO "back doors" for any spook agency. Its firewall is penetrable only by its own NAT rules. Look at my sig. That Port Forward is to this machine, and apache2 listens to that port. Nothing else I didn't ask for gets thru that routers firewall. Nda, zero Zip. And in the time I have been running dd-wrt, only one person has gotten thru it, a friend of mine whose a better network guru than I am. And I had to give him the passwords. So my whole home network, is running in a class d block in the reserved range of 192.168.xx.yy, which routers do NOT forward unless configured to do so, even then they cannot forward to another 192.168.xx.yy address. 2. Your local network, to simplify things, should be /etc/hosts file based, and this /etc/hosts file should contain a list of addresses, one per line, in the format of address(tab)FQDN(tab)alias alias alias. Mine is around 18 lines now because of all the localhost stuff there by default. 3. I like static addresses so I can remember each machines address if the lookup fails. Since network-destroyer will tear down if it can, no later than the next reboot, by overwriting the next two files if it can, its important to do as root, a chattr +i path/to/file as soon as you are finished with the write and close of the next 2 files. First, as root nano /etc/network/interfaces =========this is mine adjust yours using this format=========== # This file describes the network interfaces available on your system # and how to activate them. For more information, see interfaces(5). auto lo # The loopback network interface iface lo inet loopback address 127.0.0.1 netmask 255.255.255.0 auto eth0 # regular network for coyote.den iface eth0 inet static address 192.168.71.3 netmask 255.255.255.0 gateway 192.168.71.1 auto eth0:1 # to access reset to 192.168.0.1 routers/switches on the 2nd cat5 port iface eth0:1 inet static address 192.168.0.3 netmask 255.255.255.0 ================================== the last, eth0:1 is so I can access a router that has been reset to defaults. Don't forget to chattr +i as soon as its written Then cat it to check for typo's, or network-mangler damages, If its screwed chattr -i and re-edit it. Then still as root, nano /etc/resolv.conf and make it read: nameserver 192.168.xx.1 (where xx is your local networks 3rd set of numbers) order hosts,dns (or order hosts,nameserver either seems to work fine) Write it, close nano, and chattr +i /etc/resolv.conf. cat it to be sure its correct. if on jessie, do 'systemctl daemon-reload', endif then /etc/init.d/networking restart ifconfig eth0 check to see if the local addess is correct, if not, do another networking restart, I've had to do it twice a couple times. get out of root with a ctl+d, then ping -c3 one of your other local machines. If one doesn't work, make sure its on, the net cable is plugged in and you don't have any typu's in your editing. If that works, try all the other machines on your local net. Then to test the router, ping -c3 yahoo.com. You should now have full access to the world net, and if you turned the routers ping response from an outside address off, you are as close to invisible to the rest of the worlds script kiddies as you can be. Sleep well. It is not that hard to do and I am 82. Oh, if the link in my sig doesn't work, pm me. I can't test it from inside my local network without using my local address. I have to access that from my local address at that port number. > Obviously there need to be more dialects > added. > > Some *-codes only make sense for certain machines, cuttning tool > parameters and others. I could try to figure some extra fields for > this. > > > > > On Sun, 25 Dec 2016 16:42:58 +0000 > > Dave Caroline <[email protected]> wrote: > > It perhaps would be useful as a .sql file so it can be placed in a > > mysql/web database > > > > Dave Caroline > > > > -------------------------------------------------------------------- > >---------- Developer Access Program for Intel Xeon Phi Processors > > Access to Intel Xeon Phi processor-based developer platforms. > > With one year of Intel Parallel Studio XE. > > Training and support from Colfax. > > Order your platform today.http://sdm.link/intel > > _______________________________________________ > > Emc-users mailing list > > [email protected] > > https://lists.sourceforge.net/lists/listinfo/emc-users > > ---------------------------------------------------------------------- >-------- Developer Access Program for Intel Xeon Phi Processors > Access to Intel Xeon Phi processor-based developer platforms. > With one year of Intel Parallel Studio XE. > Training and support from Colfax. > Order your platform today.http://sdm.link/intel > _______________________________________________ > Emc-users mailing list > [email protected] > https://lists.sourceforge.net/lists/listinfo/emc-users Cheers, Gene Heskett -- "There are four boxes to be used in defense of liberty: soap, ballot, jury, and ammo. Please use in that order." -Ed Howdershelt (Author) Genes Web page <http://geneslinuxbox.net:6309/gene> ------------------------------------------------------------------------------ Developer Access Program for Intel Xeon Phi Processors Access to Intel Xeon Phi processor-based developer platforms. With one year of Intel Parallel Studio XE. Training and support from Colfax. Order your platform today.http://sdm.link/intel _______________________________________________ Emc-users mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/emc-users
