Posts by Felipe Tomm • 46 points
5 posts
-
0
votes1
answer423
viewsA: How to auto-dump in Mysql?
Hello. First of all, it will depend on the environment the database is in. If it is in a Windows, you can program a . bat and schedule its execution in the Task Scheduler. So you can determine what…
-
1
votes2
answers830
viewsA: Filter number of characters with SED or grep
Hello, good afternoon. I hope that’s what you need :) #!/bin/bash vCharsVogal=(aa ee ii oo uu) vCharsConso=(bb cc dd ff gg hh ii jj kk ll mm nn pp qq rr ss tt vv xx zz ww yy) vCharVogal=(a e i o u)…
-
1
votes1
answer2747
viewsA: Freeing external access to a particular port through Iptables
Good afternoon. There are two rules you will need: one from forward and the other from Nat. The rule that Nat is responsible for would look like this: iptables -t nat -A PREROUTING -p tcp -i enp2s0…
-
0
votes3
answers357
viewsA: How to add parameters in Tdfquerry
Hello. In this case, simply add in the SQL command (SQL command tab) the name of the desired parameters. For example: SELECT * FROM TESTE WHERE ID1 = :PARAM1 and ID2 = :PARAM2 Respecting this…
-
1
votes2
answers210
viewsA: Marking IP Tos Field in Openflow
I have little knowledge in the area, but from what I know, it is the controller that defines all the intelligence of the switch. So if you have any package checks before it is routed, this will be…