how to setup edgerouter with telekom vdsl

My ISP is the Telekom in Germany. I use a drytek modem in front of my edgerouter. prepare the Interfaces First of all I preapre all interfaces on my edgerouter. My Interfaces: eth0 => to modem eth0.7 => internet connection eth0.8 => TV streaming eth1 => managment eth2 => wifi AP eth2.37 => private LAN eth2.50 => guest LAN eth2.101 => Internet of things LAN set interfaces ethernet eth0 vif 7 description 'DSL' set interfaces ethernet eth0 vif 7 mtu 1500 set interfaces ethernet eth0 vif 7 pppoe 0 default-route auto set interfaces ethernet eth0 vif 7 pppoe 0 mtu 1492 set interfaces ethernet eth0 vif 7 pppoe 0 name-server none set interfaces ethernet eth0 vif 7 pppoe 0 user-id 'XXXXXXXXXXXXXXXXXXXXXXXXXXXX@t-online. [Read More]

Fortinet CheatSheet

Hi, this is my fortinet CheatSheet created for version 5.6: General Information NTP Status diagnose sys ntp status ARP table diagnose ip arp list routing table show active routing table get router info routing-table all show all configured routes get router info routing-table database show NAT table get system session list VPN Phase1 show phase1 diag vpn ike gateway list name <name_of_phase1> clear phase1 diag vpn ike gateway clear name <name_of_phase1> Phase2 show phase2 diag vpn tunnel list name <name_of_phase1> bring phase2 up/down diag vpn tunnel up <name_of_phase2> diag vpn tunnel down <name_of_phase2> reset phase2 diag vpn tunnel reset <name_of_phase1> show vpn logs diagnose debug reset # reset the debug settings diagnose vpn ike log-filter clear # clear the logfilter diagnose vpn ike log-filter dst-addr4 <REMOTE_VPN_GATEWAY_IP> # set a filter to only show logs to the given gateway diagnose debug app ike 255 # set the IKE log level to 255 (loglevel below) diagnose debug enable # enable the debug log diagnose debug disable # disable the debug log IKE log level -1 or 255 means all message of debug in Phase1/2. [Read More]

Backup Personal Computer With Arq

I use the backup tool arq to backup my data from my computers to the cloud. With arq you only buy the backup software. So you can choose and switch the cloud provider as you like. Arq exists for Mac and Windows. Where to store the data Arq support a lot of cloud storage provider here a list of the supported providers: Amazon Cloud Drive Google Drive Dropbox OneDrive [Read More]
arq 

Limit S3 Access to Cloudflare

To limit the access to your S3 website buckets to the cloudflare network you can simple add the following Bucket Policy

{
    "Version": "2012-10-17",
    "Statement": [
        {
            "Sid": "PublicReadGetObject",
            "Effect": "Allow",
            "Principal": "*",
            "Action": "s3:GetObject",
            "Resource": "arn:aws:s3:::your.bucket.name/*",
            "Condition": {
                "IpAddress": {
                    "aws:SourceIp": [
                        "103.21.244.0/22",
                        "103.22.200.0/22",
                        "103.31.4.0/22",
                        "104.16.0.0/12",
                        "108.162.192.0/18",
                        "131.0.72.0/22",
                        "141.101.64.0/18",
                        "162.158.0.0/15",
                        "172.64.0.0/13",
                        "173.245.48.0/20",
                        "188.114.96.0/20",
                        "190.93.240.0/20",
                        "197.234.240.0/22",
                        "198.41.128.0/17",
                        "2400:cb00::/32",
                        "2405:8100::/32",
                        "2405:b500::/32",
                        "2606:4700::/32",
                        "2803:f800::/32",
                        "2c0f:f248::/32",
                        "2a06:98c0::/29"
                    ]
                }
            }
        }
    ]
}

Aws Billing Alert

Because aws has no billing limit. It is importent to get notified when the cost are growing. Create Budget To create an alert you simply go to your admin console and navigate to Billing. There you will finde the point Budget. Here can you define an alert for your account. First thing you have to do is define the period in there your budget work. Mostly monthly is the choise. [Read More]
aws  billing