-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
671 lines (551 loc) · 33.7 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
<!DOCTYPE html>
<html lang="en-US">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Omkar Dhomane</title>
<meta name="description" content=""/>
<link href="https://fonts.googleapis.com/css?family=Montserrat:400,700,200" rel="stylesheet">
<link href="https://maxcdn.bootstrapcdn.com/font-awesome/latest/css/font-awesome.min.css" rel="stylesheet">
<link href="css/aos.css" rel="stylesheet">
<link href="css/bootstrap.min.css" rel="stylesheet">
<link href="styles/main.css" rel="stylesheet">
</head>
<body id="top">
<header>
<div class="profile-page sidebar-collapse">
<nav class="navbar navbar-expand-lg fixed-top navbar-transparent bg-primary" color-on-scroll="400">
<div class="container">
<div class="navbar-translate"><a class="navbar-brand" href="#" rel="tooltip">HOME</a>
<button class="navbar-toggler navbar-toggler" type="button" data-toggle="collapse" data-target="#navigation" aria-controls="navigation" aria-expanded="false" aria-label="Toggle navigation"><span class="navbar-toggler-bar bar1"></span><span class="navbar-toggler-bar bar2"></span><span class="navbar-toggler-bar bar3"></span></button>
</div>
<div class="collapse navbar-collapse justify-content-end" id="navigation">
<ul class="navbar-nav">
<li class="nav-item"><a class="nav-link smooth-scroll" href="#about">About</a></li>
<li class="nav-item"><a class="nav-link smooth-scroll" href="#skill">Skills</a></li>
<li class="nav-item"><a class="nav-link smooth-scroll" href="#portfolio">Projects</a></li>
<li class="nav-item"><a class="nav-link smooth-scroll" href="#experience">Experience</a></li>
<li class="nav-item"><a class="nav-link smooth-scroll" href="#education">Education</a></li>
<li class="nav-item"><a class="nav-link smooth-scroll" href="#contact">Contact</a></li>
</ul>
</div>
</div>
</nav>
</div>
</header>
<div class="page-content">
<div>
<div class="profile-page">
<div class="wrapper">
<div class="page-header page-header-small" filter-color="green">
<div class="page-header-image" data-parallax="true" style="background-image: url('images/cc-bg-1.JPG');"></div>
<div class="container">
<div class="content-center">
<div class="cc-profile-image"><a href="#"><img src="images/anthony.jpg" alt="Image"/></a></div>
<div class="h2 title">OMKAR DHOMANE</div>
<p class="category text-white"></p><a class="btn btn-primary smooth-scroll mr-2" href="#contact" data-aos="zoom-in" data-aos-anchor="data-aos-anchor">Connect!</a><a class="btn btn-primary" href="resume.pdf" target="_blank" data-aos="zoom-in" data-aos-anchor="data-aos-anchor">Resume</a>
</div>
</div>
<div class="section">
<div class="container">
<div class="button-container"><a class="btn btn-default btn-round btn-lg btn-icon" href="https://www.linkedin.com/in/omd94/" target="_blank" rel="tooltip" title="Connect on LinkedIn"><i class="fa fa-linkedin"></i></a><a class="btn btn-default btn-round btn-lg btn-icon" href="https://www.fb.com/omd94" target="_blank" rel="tooltip" title="Add me on Facebook"><i class="fa fa-facebook"></i></a><a class="btn btn-default btn-round btn-lg btn-icon" href="https://github.com/dhomane" target="_blank" rel="tooltip" title="Follow me on Github"><i class="fa fa-github"></i></a><a class="btn btn-default btn-round btn-lg btn-icon" href="https://www.instagram.com/omkar_d18" target="_blank" rel="tooltip" title="Follow me on Instagram"><i class="fa fa-instagram"></i></a> <a class="btn btn-default btn-round btn-lg btn-icon" href="mailto:omkardhomane@gmail.com" target="_blank" rel="tooltip" title="Send me an email"><i class="fa fa-envelope"></i></a></div>
</div>
</div>
</div>
</div>
</div>
<div class="section" id="about">
<div class="container">
<div class="card" data-aos="fade-up" data-aos-offset="10">
<div class="row">
<div class="col-lg-6 col-md-12">
<div class="card-body">
<div class="h4 mt-0 title">About</div>
<p>Hello! I am Omkar Dhomane. My academic and professional experience is primarily in the areas of Cloud Computing, Systems Engineering, Network Engineering and DevOps. I am currently working as a Senior Cloud Architect at MicroStrategy. In the past, I worked as a Cloud Support Engineer at Amazon Web Services (AWS). I graduated with a Master of Science (MS) in Telecommunications from University of Maryland, College Park in May 2018.</p>
<p>This is my portfolio website which contains information about my academic and professional background, my core skills and some of my interesting projects. If you share the same passion for technology as I do, Let us connect!</p>
</div>
</div>
<div class="col-lg-6 col-md-12">
<div class="card-body">
<div class="h4 mt-0 title">Basic Information</div>
<div class="row">
<div class="col-sm-4"><strong class="text-uppercase">Name:</strong></div>
<div class="col-sm-8">Omkar M. Dhomane</div>
</div>
<div class="row mt-3">
<div class="col-sm-4"><strong class="text-uppercase">Email:</strong></div>
<div class="col-sm-8">omkardhomane@gmail.com</div>
</div>
<div class="row mt-3">
<div class="col-sm-4"><strong class="text-uppercase">Location:</strong></div>
<div class="col-sm-8">Herndon, VA, USA</div>
</div>
<div class="row mt-3">
<div class="col-sm-4"><strong class="text-uppercase">Languages:</strong></div>
<div class="col-sm-8">English, Hindi, Marathi, French</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="section" id="skill">
<div class="container">
<div class="h4 text-center mb-4 title">Professional Skills</div>
<div class="card" data-aos="fade-up" data-aos-anchor-placement="top-bottom">
<div class="card-body">
<div class="row">
<div class="col-md-6">
<div class="progress-container progress-primary"><span class="progress-badge">LINUX</span>
<div class="progress">
<div class="progress-bar progress-bar-primary" data-aos="progress-full" data-aos-offset="10" data-aos-duration="2000" role="progressbar" aria-valuenow="90" aria-valuemin="0" aria-valuemax="100" style="width: 90%;"></div><span class="progress-value">90%</span>
</div>
</div>
</div>
<div class="col-md-6">
<div class="progress-container progress-primary"><span class="progress-badge">NETWORKING</span>
<div class="progress">
<div class="progress-bar progress-bar-primary" data-aos="progress-full" data-aos-offset="10" data-aos-duration="2000" role="progressbar" aria-valuenow="80" aria-valuemin="0" aria-valuemax="100" style="width: 80%;"></div><span class="progress-value">80%</span>
</div>
</div>
</div>
</div>
<div class="row">
<div class="col-md-6">
<div class="progress-container progress-primary"><span class="progress-badge">SECURITY</span>
<div class="progress">
<div class="progress-bar progress-bar-primary" data-aos="progress-full" data-aos-offset="10" data-aos-duration="2000" role="progressbar" aria-valuenow="80" aria-valuemin="0" aria-valuemax="100" style="width: 70%;"></div><span class="progress-value">80%</span>
</div>
</div>
</div>
<div class="col-md-6">
<div class="progress-container progress-primary"><span class="progress-badge">PYTHON</span>
<div class="progress">
<div class="progress-bar progress-bar-primary" data-aos="progress-full" data-aos-offset="10" data-aos-duration="2000" role="progressbar" aria-valuenow="70" aria-valuemin="0" aria-valuemax="100" style="width: 80%;"></div><span class="progress-value">70%</span>
</div>
</div>
</div>
</div>
<div class="row">
<div class="col-md-6">
<div class="progress-container progress-primary"><span class="progress-badge">CLOUD</span>
<div class="progress">
<div class="progress-bar progress-bar-primary" data-aos="progress-full" data-aos-offset="10" data-aos-duration="2000" role="progressbar" aria-valuenow="80" aria-valuemin="0" aria-valuemax="100" style="width: 80%;"></div><span class="progress-value">80%</span>
</div>
</div>
</div>
<div class="col-md-6">
<div class="progress-container progress-primary"><span class="progress-badge">DEVOPS</span>
<div class="progress">
<div class="progress-bar progress-bar-primary" data-aos="progress-full" data-aos-offset="10" data-aos-duration="2000" role="progressbar" aria-valuenow="80" aria-valuemin="0" aria-valuemax="100" style="width: 80%;"></div><span class="progress-value">80%</span>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="section" id="portfolio">
<div class="container">
<div class="row">
<div class="col-md-6 ml-auto mr-auto">
<div class="h4 text-center mb-4 title">Some of my Projects</div>
<div class="nav-align-center">
<ul class="nav nav-pills nav-pills-primary" role="tablist">
<li class="nav-item"><a class="nav-link active" data-toggle="tab" href="#web-development" role="tablist"><i class="fa fa-laptop" aria-hidden="true"></i></a></li>
</ul>
</div>
</div>
</div>
<div class="tab-content gallery mt-5">
<div class="tab-pane active" id="web-development">
<div class="ml-auto mr-auto">
<div class="row">
<div class="col-md-6">
<div class="cc-porfolio-image img-raised" data-aos="fade-up" data-aos-anchor-placement="top-bottom"><a href="https://github.com/dhomane/mobile-communication-python" target="_blank">
<figure class="cc-effect"><img src="images/project-1.jpg" alt="Image"/>
<figcaption>
<div class="h4">Cellular Network Simulator using Python</div>
<p>Python</p>
</figcaption>
</figure></a></div>
<div class="cc-porfolio-image img-raised" data-aos="fade-up" data-aos-anchor-placement="top-bottom"><a href="https://github.com/dhomane/linux-bash-scripts" target="_blank">
<figure class="cc-effect"><img src="images/project-2.jpg" alt="Image"/>
<figcaption>
<div class="h4">Linux Bash Scripts</div>
<p>Linux</p>
</figcaption>
</figure></a></div>
</div>
<div class="col-md-6">
<div class="cc-porfolio-image img-raised" data-aos="fade-up" data-aos-anchor-placement="top-bottom"><a href="https://s3.amazonaws.com/omkardhomane.com/files/Penetration+testing+with+Kali+Linux.pdf" target="_blank">
<figure class="cc-effect"><img src="images/project-3.jpg" alt="Image"/>
<figcaption>
<div class="h4">Kali Linux Penetration Testing</div>
<p>Security</p>
</figcaption>
</figure></a></div>
<div class="cc-porfolio-image img-raised" data-aos="fade-up" data-aos-anchor-placement="top-bottom"><a href="https://github.com/dhomane/aws-cloudformation-templates" target="_blank">
<figure class="cc-effect"><img src="images/project-4.jpg" alt="Image"/>
<figcaption>
<div class="h4">AWS CloudFormation Stacks</div>
<p>Cloud</p>
</figcaption>
</figure></a></div>
</div>
</div>
</div>
</div>
<div class="tab-pane" id="graphic-design" role="tabpanel">
<div class="ml-auto mr-auto">
<div class="row">
<div class="col-md-6">
<div class="cc-porfolio-image img-raised" data-aos="fade-up" data-aos-anchor-placement="top-bottom"><a href="#graphic-design">
<figure class="cc-effect"><img src="images/graphic-design-1.jpg" alt="Image"/>
<figcaption>
<div class="h4">Triangle Pattern</div>
<p>Graphic Design</p>
</figcaption>
</figure></a></div>
<div class="cc-porfolio-image img-raised" data-aos="fade-up" data-aos-anchor-placement="top-bottom"><a href="#graphic-design">
<figure class="cc-effect"><img src="images/graphic-design-2.jpg" alt="Image"/>
<figcaption>
<div class="h4">Abstract Umbrella</div>
<p>Graphic Design</p>
</figcaption>
</figure></a></div>
</div>
<div class="col-md-6">
<div class="cc-porfolio-image img-raised" data-aos="fade-up" data-aos-anchor-placement="top-bottom"><a href="#graphic-design">
<figure class="cc-effect"><img src="images/graphic-design-3.jpg" alt="Image"/>
<figcaption>
<div class="h4">Cube Surface Texture</div>
<p>Graphic Design</p>
</figcaption>
</figure></a></div>
<div class="cc-porfolio-image img-raised" data-aos="fade-up" data-aos-anchor-placement="top-bottom"><a href="#graphic-design">
<figure class="cc-effect"><img src="images/graphic-design-4.jpg" alt="Image"/>
<figcaption>
<div class="h4">Abstract Line</div>
<p>Graphic Design</p>
</figcaption>
</figure></a></div>
</div>
</div>
</div>
</div>
<div class="tab-pane" id="Photography" role="tabpanel">
<div class="ml-auto mr-auto">
<div class="row">
<div class="col-md-6">
<div class="cc-porfolio-image img-raised" data-aos="fade-up" data-aos-anchor-placement="top-bottom"><a href="#Photography">
<figure class="cc-effect"><img src="images/photography-1.jpg" alt="Image"/>
<figcaption>
<div class="h4">Photoshoot</div>
<p>Photography</p>
</figcaption>
</figure></a></div>
<div class="cc-porfolio-image img-raised" data-aos="fade-up" data-aos-anchor-placement="top-bottom"><a href="#Photography">
<figure class="cc-effect"><img src="images/photography-3.jpg" alt="Image"/>
<figcaption>
<div class="h4">Wedding Photoshoot</div>
<p>Photography</p>
</figcaption>
</figure></a></div>
</div>
<div class="col-md-6">
<div class="cc-porfolio-image img-raised" data-aos="fade-up" data-aos-anchor-placement="top-bottom"><a href="#Photography">
<figure class="cc-effect"><img src="images/photography-2.jpg" alt="Image"/>
<figcaption>
<div class="h4">Beach Photoshoot</div>
<p>Photography</p>
</figcaption>
</figure></a></div>
<div class="cc-porfolio-image img-raised" data-aos="fade-up" data-aos-anchor-placement="top-bottom"><a href="#Photography">
<figure class="cc-effect"><img src="images/photography-4.jpg" alt="Image"/>
<figcaption>
<div class="h4">Nature Photoshoot</div>
<p>Photography</p>
</figcaption>
</figure></a></div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="section" id="experience">
<div class="container cc-experience">
<div class="h4 text-center mb-4 title">Work Experience</div>
<div class="card">
<div class="row">
<div class="col-md-3 bg-primary" data-aos="fade-right" data-aos-offset="50" data-aos-duration="500">
<div class="card-body cc-experience-header">
<p>Jan 2021 - May 2022</p>
<div class="h5">Verizon</div>
</div>
</div>
<div class="col-md-9" data-aos="fade-left" data-aos-offset="50" data-aos-duration="500">
<div class="card-body">
<div class="h5"> Systems Engineer </div>
<p><li>At Verizon Labs, I configured, implemented and tested IaaS based VM tools on top of operating Systems such as Linux/Unix (Red Hat Enterprise Linux, CentOS, Ubuntu etc.) and Microsoft Windows Server to ensure and support smooth functionality of the computing infrastructure.</li>
<br>
<li>I also developed new virtualization solutions in cloud network virtualization environment using tools and platforms such as VMWare, OpenStack and AWS in addition to the deployment of type 1 hypervisors including VMware ESXI 6.5+, OpenShift, Hyper-V, KVM, Oracle, Xen and Citrix.</li>
<br>
<li>Additionally, I contributed to the deployment of in-house developed applications including monolithic, microservices, containerized applications based on Docker and appropriate orchestration systems such as Kubernetes and Docker Swarm.</li>
<br>
<li>Further, I applied advanced troubleshooting techniques related to DHCP, DNS, TCP/IP, Load Balancing, IPSec and Routing to proactively mitigate potential network issues impacting the regular operations workflow.</li>
<br>
<li>Lastly, I collaborated with the DevOps teams to utilize automation tools like Ansible and Jenkins along with helping to develop Python and shell scripts and automation systems for expediting deployment and system administrative tasks.</li>
</p>
</div>
</div>
</div>
</div>
<div class="card">
<div class="row">
<div class="col-md-3 bg-primary" data-aos="fade-right" data-aos-offset="50" data-aos-duration="500">
<div class="card-body cc-experience-header">
<p>Nov 2018 - Nov 2020</p>
<div class="h5">Amazon Web Services</div>
</div>
</div>
<div class="col-md-9" data-aos="fade-left" data-aos-offset="50" data-aos-duration="500">
<div class="card-body">
<div class="h5">Cloud Support Engineer (Linux/DevOps) </div>
<p><li>One of Amazon.com’s fastest growing businesses supporting millions of customers in over 100 countries that use AWS to run their infrastructure. Provided world class technical support and customer service to a wide range of external customers as they build mission-critical applications on top of AWS.</li>
<br>
<li>Within the Cloud Support Engineering team, I was at the forefront of this transformational technology assisting a global list of companies that are taking advantage of a growing set of services and features to run their mission-critical applications. I gott my hands dirty through troubleshooting application, network, database, and architectural challenges using a suite of internal AWS tools as well as existing knowledge and toolkits.</li>
<br>
<li>I served as a key contributor in supporting AWS services that focus on Compute technologies including EC2, VPC, Lightsail etc. Storage services like S3, EBS, EFS, etc., Operations and monitoring services like Systems Manager, CloudWatch etc., containerized services like ECS and also services that enable customers to migrate their workloads to AWS.</li>
<br>
<li>Additionally, I supported AWS customers with System Administration tasks on Linux (Ubuntu, CentOS, RedHat, Amazon Linux etc.) and troubleshooting networking issues in TCP/IP, DNS, SSH, Routing, firewalls, LAN/WAN etc and also gained hands-on experience with configuration management tools (Ansible, Puppet), infrastructure provisioning tools (Terraform, CloudFormation), building and maintaining CI/CD pipelines using Jenkins and automating common tasks with Python and Bash/Shell scripting. </li>
</p>
</div>
</div>
</div>
</div>
<div class="card">
<div class="row">
<div class="col-md-3 bg-primary" data-aos="fade-right" data-aos-offset="50" data-aos-duration="500">
<div class="card-body cc-experience-header">
<p>Sep 2018 - Nov 2018</p>
<div class="h5">Juniors Read LLC.</div>
</div>
</div>
<div class="col-md-9" data-aos="fade-left" data-aos-offset="50" data-aos-duration="500">
<div class="card-body">
<div class="h5">Software Development Engineer - Intern</div>
<p>Juniors Read LLC is an e-learning multimedia company located in Washington DC. My responsibilities included extracting and processing raw data sets in HTML and CSS, writing modular shell scripts, web scraping using Python libraries and calling associated REST APIs. Also coordinated between teams for code collaboration, development and testing using Git version control.</p>
</div>
</div>
</div>
</div>
<div class="card">
<div class="row">
<div class="col-md-3 bg-primary" data-aos="fade-right" data-aos-offset="50" data-aos-duration="500">
<div class="card-body cc-experience-header">
<p>June 2018 - Aug 2018</p>
<div class="h5">Intertek</div>
</div>
</div>
<div class="col-md-9" data-aos="fade-left" data-aos-offset="50" data-aos-duration="500">
<div class="card-body">
<div class="h5">Security Engineer - Intern </div>
<p><li>Intertek Group PLC is a British multinational assurance, inspection, product testing and certification company headquartered in London, England. As a part of the network security engineering team in Maryland, US, I implemented FIPS 140-2 and Common Criteria based security testing including Gap Analysis, Physical Testing, Functional Testing, Source Code Review, Algorithm Testing, Compliance Audits and drafting Technical Documents.</li>
<br>
<li>Additionally, performed operational testing and troubleshooting of Routers, Switches, Servers & Firewalls along with documenting the results to test a wide range of network hardware, software and firmware products of diverse vendors like Cisco, Juniper, Oracle etc.</li></p>
</div>
</div>
</div>
</div>
<div class="card">
<div class="row">
<div class="col-md-3 bg-primary" data-aos="fade-right" data-aos-offset="50" data-aos-duration="500">
<div class="card-body cc-experience-header">
<p>Feb 2018 - Apr 2018</p>
<div class="h5">Motir Services, Inc.</div>
</div>
</div>
<div class="col-md-9" data-aos="fade-left" data-aos-offset="50" data-aos-duration="500">
<div class="card-body">
<div class="h5">Network Engineer - Intern</div>
<p><li>Headquartered in Washington DC, Motir Services is a multi-services firm which includes construction, consulting, facility management, moving and logistics, IT services, and medical staffing services to federal, state, and municipal government organizations. As an in-house Network engineer intern, I deployed, maintained and supported the IT, network and security infrastructure including servers, desktops, routers, switches and firewalls. </li>
<br>
<li>I monitored the operational status of the systems using tools for alerts and notifications and responded accordingly through service tickets. Also, provided support via phone and email to diagnose and resolve network problems and provided end user assistance for IT issues.</li></p>
</div>
</div>
</div>
</div>
<div class="card">
<div class="row">
<div class="col-md-3 bg-primary" data-aos="fade-right" data-aos-offset="50" data-aos-duration="500">
<div class="card-body cc-experience-header">
<p>May 2017 - Oct 2017</p>
<div class="h5">CGC Technologies</div>
</div>
</div>
<div class="col-md-9" data-aos="fade-left" data-aos-offset="50" data-aos-duration="500">
<div class="card-body">
<div class="h5">Network Engineer - Intern & Co-op</div>
<p><li>CGC Technologies is an Information Technology solutions company providing IT services to the Public and Private sectors in Washington DC. As a part of the network infrastructure team, I planned, configured and supported different customer network environments for remote and on-site network management, server administration, directory services, network security, VPN, virtualization, wireless and VoIP. I collaborated in the installation, configuration and troubleshooting of Cisco and Juniper routers, switches and firewalls.</li>
<br>
<li>I also administered real-time network and security monitoring using various enterprise tools, constructed network diagrams in Visio and performed penetration testing and vulnerability scans on customer networks. I handled NOC escalation calls, tracked work orders and trouble tickets in SpiceWorks Helpdesk and directly interacted with clients to provide high-level technical support and resolve LAN/WAN issues.</li></p>
</div>
</div>
</div>
</div>
<div class="card">
<div class="row">
<div class="col-md-3 bg-primary" data-aos="fade-right" data-aos-offset="50" data-aos-duration="500">
<div class="card-body cc-experience-header">
<p>June 2015 - Nov 2015</p>
<div class="h5">Intech Online</div>
</div>
</div>
<div class="col-md-9" data-aos="fade-left" data-aos-offset="50" data-aos-duration="500">
<div class="card-body">
<div class="h5">Network Administrator - Intern</div>
<p><li>Intech Online is one of India's Leading DoT Licensed Internet Service Provider. I worked in the Network Operations team and provided Tier-I NOC support, assisted network engineers with troubleshooting, maintenance, upgrading and auditing the ISP’s data center infrastructure.</li>
<br>
<li>I monitored the network activity using PRTG and escalated tickets in JIRA Service Desk to the appropriate engineering teams during network outages, operational issues and configuration changes and worked with personnel and facilities management staff to install, remove, or relocate network equipment and authored technical documentation for operating instructions, procedures, and controls to ensure trouble-free operation of systems.</li></p>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="section" id="education">
<div class="container cc-education">
<div class="h4 text-center mb-4 title">Education</div>
<div class="card">
<div class="row">
<div class="col-md-3 bg-primary" data-aos="fade-right" data-aos-offset="50" data-aos-duration="500">
<div class="card-body cc-education-header">
<p>2016 - 2018</p>
<div class="h5">Master's Degree</div>
</div>
</div>
<div class="col-md-9" data-aos="fade-left" data-aos-offset="50" data-aos-duration="500">
<div class="card-body">
<div class="h5"><b>Master of Science (MS)</b></div>
<p class="category"><b>University of Maryland, College Park</b></p>
<p>Telecommunications Engineering</p>
<br>
<p>
<b>Coursework:</b> Networks and Protocols, Advanced Topics in Networking: Network Design and Configuration Lab, Distributed Systems in a Virtual Environment (Linux), Special Topics in Cybersecurity: System Security, Introduction to Cloud Computing etc.
</p>
</div>
</div>
</div>
</div>
<div class="card">
<div class="row">
<div class="col-md-3 bg-primary" data-aos="fade-right" data-aos-offset="50" data-aos-duration="500">
<div class="card-body cc-education-header">
<p>2012 - 2016</p>
<div class="h5">Bachelor's Degree</div>
</div>
</div>
<div class="col-md-9" data-aos="fade-left" data-aos-offset="50" data-aos-duration="500">
<div class="card-body">
<div class="h5"><b>Bachelor of Engineering (BE)</b></div>
<p class="category"><b>University of Mumbai</b></p>
<p>Electronics and Telecommunications Engineering</p>
<br>
<p>
<b>Coursework:</b> Computer Communication and Networks, Internet and Voice Communications, Optical Communication and Networks, Data Encryption and Security, Telecommunications Network Management etc.
</p>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="section" id="contact">
<div class="cc-contact-information" style="background-image: url('images/staticmap.png');">
<div class="container">
<div class="cc-contact">
<div class="row">
<div class="col-md-9">
<div class="card mb-0" data-aos="zoom-in">
<div class="h4 text-center title">Contact Me</div>
<div class="row">
<div class="col-md-6">
<div class="card-body">
<form action="https://formspree.io/omkardhomane@gmail.com" method="POST">
<div class="p pb-3"><strong>Feel free to contact me </strong></div>
<div class="row mb-3">
<div class="col">
<div class="input-group"><span class="input-group-addon"><i class="fa fa-user-circle"></i></span>
<input class="form-control" type="text" name="name" placeholder="Name" required="required"/>
</div>
</div>
</div>
<div class="row mb-3">
<div class="col">
<div class="input-group"><span class="input-group-addon"><i class="fa fa-file-text"></i></span>
<input class="form-control" type="text" name="Subject" placeholder="Subject" required="required"/>
</div>
</div>
</div>
<div class="row mb-3">
<div class="col">
<div class="input-group"><span class="input-group-addon"><i class="fa fa-envelope"></i></span>
<input class="form-control" type="email" name="_replyto" placeholder="E-mail" required="required"/>
</div>
</div>
</div>
<div class="row mb-3">
<div class="col">
<div class="form-group">
<textarea class="form-control" name="message" placeholder="Your Message" required="required"></textarea>
</div>
</div>
</div>
<div class="row">
<div class="col">
<button class="btn btn-primary" type="submit">Send</button>
</div>
</div>
</form>
</div>
</div>
<div class="col-md-6">
<div class="card-body">
<p class="mb-0"><strong>Location </strong></p>
<p class="pb-2">Herndon, VA</p>
<p class="mb-0"><strong>Email</strong></p>
<p>omkardhomane@gmail.com</p>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div></div>
</div>
<footer class="footer">
<div class="h4 title text-center">Omkar Dhomane</div>
<div class="text-center text-muted">
<p>©<b>2024</b><br><font color="#F0F0F0"></font><a class="credit" href="https://templateflip.com" target="_blank"></a><font color="#F0F0F0"></font></a></font></p>
</div>
</footer>
<script src="js/core/jquery.3.2.1.min.js"></script>
<script src="js/core/popper.min.js"></script>
<script src="js/core/bootstrap.min.js"></script>
<script src="js/now-ui-kit.js?v=1.1.0"></script>
<script src="js/aos.js"></script>
<script src="scripts/main.js"></script>
</body>
</html>