Skip to content

Instantly share code, notes, and snippets.

View roelandjansen's full-sized avatar

Roeland Jansen roelandjansen

  • IJsselstein, Utrecht, Netherlands
View GitHub Profile

Download FREE Cisco IOS image for GNS3

Hi dear all, that’s really a great to share my hard work with you , After a lots of hit in Google I finally found trick to search Cisco IOS in free of course. So without talking much here are the link where you can free download Cisco ios image and you can upload or use this ios to the router and as well as in GNS3.

Small Collection of IOS Images.

  • ftp://ftp.unikon-ua.net/pub/Cisco/IOS/

{Updated}Big Collection of IOS Images (Almost All Cisco IOS Images)

  • ftp://62.117.115.92/upload/ios/
@roelandjansen
roelandjansen / gist:3d4695f90f356886a5fe2de0ed80b498
Created January 23, 2020 14:50 — forked from jimfinnis/gist:6823802
C++/C code to send UDP packets.
#include <stdio.h>
#include <sys/socket.h>
#include <netinet/in.h>
#include <arpa/inet.h>
#include <unistd.h>
#include <strings.h>
#include <string.h>
#include <fcntl.h>
#include <stdlib.h>
zabbix_sender -vv --config /etc/zabbix/zabbix_agentd.conf --host "Zabbix server" --key chatops.test.value --value 0
zabbix_sender -vv --config /etc/zabbix/zabbix_agentd.conf --host "Zabbix server" --key chatops.test.value --value 1

method 1

sudo /usr/local/McAfee/AntiMalware/VSControl stopoas

alternatively

sudo defaults write /Library/Preferences/com.mcafee.ssm.antimalware.plist OAS_Enable -bool False
sudo /usr/local/McAfee/AntiMalware/VSControl stop
sudo /usr/local/McAfee/AntiMalware/VSControl reload
@roelandjansen
roelandjansen / stream_local_audio.sh
Created March 5, 2019 13:38 — forked from astoeckel/stream_local_audio.sh
Stream audio from pulse audio as opus stream via UDP/RTP
#!/bin/sh
pacat \
--device=alsa_output.pci-0000_00_1b.0.analog-stereo.monitor \
--rate=48000 \
--record | \
opusenc \
--expect-loss=25 \
--max-delay=0 \
--framesize=2.5 \
@roelandjansen
roelandjansen / rpm-digital-signature.sh
Created November 23, 2018 13:09 — forked from fernandoaleman/rpm-digital-signature.sh
How to sign your custom RPM package with GPG key
# How to sign your custom RPM package with GPG key
# Step: 1
# Generate gpg key pair (public key and private key)
#
# You will be prompted with a series of questions about encryption.
# Simply select the default values presented. You will also be asked
# to create a Real Name, Email Address and Comment (comment optional).
#
# If you get the following response:
@roelandjansen
roelandjansen / ova-gen.sh
Created March 7, 2017 06:50 — forked from rubiojr/ova-gen.sh
Convert VMDK to OVA using VirtualBox
#!/bin/sh
#
# http://jbrazile.blogspot.com.es/2012/01/scripted-vmdkova-images-wboxgrinder-and.html
#
NAME=$1
OS=$2
IMAGE=
SZMB=384
INSTDIR=/tmp/ova-gen/boxes
BUILDDIR=/tmp/ova-gen/builds