Skip to content

Author: Matheus (X-warrior) Bratfisch

Conversion table – 3 – Computer Organization (INE5411)

Hello,

This post have some extra conversion. The first one just have some pages that I used until that moment. This one have the conversion table until now.

Matheus Bratfisch

Update End Point, TunnelBroker

Hello, If you want to UPDATE your tunnelbroker end point, you can use this: http://ipv4.tunnelbroker.net/ipv4_end.php There are the format that you have to use. In…

Open ping in server from one IP

Good Night, If you want to enable PING in your SERVER just from ONE IP use this IPtables rule: $ sudo iptables -A INPUT -p…

Install and Configure DHCP server in Ubuntu

Good night, If you want to install DHCP server in Ubuntu, use $ sudo apt-get install dhcp3-server And then edit /etc/dhcp3/dhcpd.conf I commented all lines…

Share internet in a SERVER connected to WAN port.

Hello, The last days I keep trying to configure my server. I know how to configure the network to this: MODEM -> (eth0) Servidor (eth1)…

Install Ubuntu from Pendrive

Hello, Today I will just recomment to you the post of Juliano Martins about how o install Ubuntu from pendrive. UPDATE: In the last days…

Install and configure SSH server to be safer.

Good night, To install ssh server in Ubuntu use: $ sudo apt-get install openssh-server To let it safer edit /etc/ssh/sshd_config $ sudo vi /etc/ssh/sshd_config Than…

Execute file in computer startup

Good Night, This is a simple tip, how to execute some file in computer startup. (I used this tip to enable the port forward on…

Forwarding ports to a VirtualBox

Good afternoon, If you want to forward ports to a virtualmachine in VirtualBox you should do this: Create an interface “tap” #sudo tunctl -u $USER…

Client and Server, Java XML-RPC

Good night,

A few days ago I created a XML-RPC server to test some functions. What is XML-RPC? XML-RPC is a remote procedure call (RPC) protocol which uses XML to encode its calls and HTTP as a transport mechanism.(wikipedia) To start using XML-RPC in Java I used apache xml-rpc.

Example client and server XML-RPC.

Best Regards,
Matheus