Good afternoon all. I'm Neil (ntozier) the forum moderator at the osTicket forums and I saw your tweet. I thought that I would introduce myself and let you know that If you have any questions please feel free to post on the forums. Have a great day!
Best posts made by ntozier
-
RE: osTicket 1.10
-
RE: old MSP wants to know what they did wrong
Honestly if it's as bad as you are saying it is. I would compose a list. I would document the whole thing with screen shots (and pictures) and I would hand it all to your boss and tell him to consult his lawyer as to whether or not they are going to sue him... He obviously wasn't providing them with what he was billing them for. Of course wait until you got the domain transferred. Then you can tell him that you aren't allowed to speak to him, and that all communications should be routed through "name of lawfirm here".
-
RE: Installing osTicket 1.10 on CentOS 7
As a side note (on this older topic) osTicket 1.11 was released back on Feb 6th.
-
RE: HPE Sells OpenStack and Cloud Foundry Business to Suse
HP seems to be selling off a lot of stuff recently...
-
RE: DirectvNow
Some day some content provider some where will let you piece meal pick the channels that you want... and charge you a nice low rate. I'd probably be happy to pay $4.99/mo for 7 channels that I got to pick.
I'm seriously not impressed by Sling's pricing.
-
RE: Been Wanting 10Gb Lab For A While
@Dashrender said in Been Wanting 10Gb Lab For A While:
Just curious, what do you gain by having 10Gb at home? [snipped]... I'm wondering what I'm missing?
Bragging Rights!
-
RE: Upgrading to osTicket 1.11.0
While you can run the version from github, the devs have asked that you download it from osticket.com/download instead. There is some packaging they do that apparently isn't handled by github (such as setting version number).
I generally recommend that people upgrade to at least PHP 5.6. If your a stickler for running a version of PHP thats still being support by php.net then you will want to upgrade to something a lot newer as 5.5, 5.6 and 7.0 are no longer under active support, and 7.0 will only receive security updates.
-
RE: What are you listening to? What would you recommend?
I'm a little obsessed with this song... most versions of it.
This one is currently my favorite rendition though. -
RE: Installing osTicket 1.10 on CentOS 7
@scottalanmiller as a side note, one of the most reported issues with osTicket under CentOS is that SELinux has some rules that conflict with some of the AJAX requests. If you get a white bar or find that something doesn't work you would want to check your logs to see if that's whats happening.
-
RE: Gaming - What's everyone playing / hosting / looking to play
It's winter so in the last month: finished Horizon Zero Dawn, Kindom Hearts III, Shadow of the Collosus (HD remaster), and lastly just finished Final Fantasy X (HD remaster) last night.
-
RE: Installing osTicket 1.10 on CentOS 7
@scottalanmiller said in Installing osTicket 1.10 on CentOS 7:
He's actually being super obtuse and actually wanted to ask if you specifically had an importer script for Spiceworks tickets. It's a very specific and very complex task, I'm afraid.
The folks over on the paid side (Customization Services) might have the ability to do something like that. But I certainly do not have a script like that, and it is definitely not baked into the product. I'm sure that it is something that they could work with people to do though.
-
RE: Gaming - What's everyone playing / hosting / looking to play
@wirestyle22 said in Gaming - What's everyone playing / hosting / looking to play:
Sekiro
I'm currently playing Dragon Age Inquisition (yes for the first time).
I pre-ordered Sekiro Shadows Die Twice.I'm looking forward to Cyberpunk 2013 (I mean 2077, but had to pay homage to the original R. Talsorian table top version) and Death Stranding.
-
RE: 40 TB NAS storage recommendations...
@sn
I know that this is a little late, but we use Buffalo TeraStations here. The 7000 series have has dual power supplies. It comes in 24TB, 48TB, 96TB, and 120TB flavors. That's about the extent of my knowledge about them though.While we do not use the 7000 series we have had good luck, and only one disk failure (knocks on wood) with our three (3) TerraStation 5400's. Support wasn't a terrible experience either.
note: when I say "we" I do not mean osTicket. I actually mean the company that I work for [which is a medium sized non-profit].
-
RE: Gaming - What's everyone playing / hosting / looking to play
I've actually gone back and started working on Witcher 1.
-
RE: Installing osTicket 1.10 on CentOS 7
@wirestyle22 I would actually not recommend using the source from github. The devs do some stuff to package it up for the download section at osticket.com/download. What do they do? Honestly I've never asked. But the version displayed on any github downloaded version is never right.
-
RE: Installing osTicket 1.10 on CentOS 7
@hobbit666 On CentOS this is usually an SELinux configuration issue. You can try temporarily disabling SELinux and see if the problem goes away. If it does that you should write a rule allowing the connection. [And it goes with out saying that you should re-enable SELinux]
-
Splunk vs iptables
So I'm a relative newbie with using iptables. I have used them for years but usually with fail2ban, and the occasional adding a specific rule to allow a specific connection [like to allow someone to SSH from a specific IP]. Lastly I just setup Splunk for the first time on a Windows 2012r2 server that I just stood up.
Splunk seems pretty straight forward and it all installed on the server with out any issues. I added a receive port (default 9997).
I installed the splunk universal forwarder to my Debian 9.8 Linux box. (using the official Splunk .deb download) Knowing that IP tables is going to trip me up I add some rules.
# iptables -A INPUT -i eth0 -p tcp --dport 9997 -m state --state NEW,ESTABLISHED -j ACCEPT
# iptables -A OUTPUT -o eth0 -p tcp --sport 9997 -m state --state NEW,ESTABLISHED -j ACCEPT
I get to the point where I add the forward server. I use a command similar to:
./splunk add forward-server 192.168.0.15:9997 -auth admin:changeme
I get the error: Couldn't complete HTTP request: Connection timed out
Okay so I check the windows firewall. I create a rule to allow all traffic from the linux server to the splunk server. I try again. Same thing. /grump
Alright so then it must be iptables since it drops most things. I go back to the Linux server and issue these:
iptables --policy INPUT ACCEPT
iptables --policy OUTPUT ACCEPT
I run the command. Bingo.
Added forwarding to: 192.168.0.15:9997.So now my question... now that it appears to be working I would add data to forward... but I dont want to leave iptables wide open. Anyone good knowledgeable with Splunk and iptables to help me close this back up?
I could do something like:
iptables -A INPUT -s 192.168.0.15 -j ACCEPT
iptables -A OUTPUT -s 192.168.0.15 -j ACCEPT
But I would really like to lock this down to just the ports that Splunk needs. I'm obviously missing something.
note: I've tried adding a few more ports (8089 and 8000) to be accepted INPUT and OUTPUT. I've googled it about 30 different times and poured through their Splunks help docs and am stuck.
note2: ips changed to protect the innocent.
Thanks!